码迷,mamicode.com
首页 > 编程语言 > 详细

设计模式 - 装饰者模式(Decorator Pattern) Java的IO类 使用方法

时间:2014-05-25 00:55:05      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:mystra   设计模式   装饰者模式   javaio   面向对象   

装饰者模式(Decorator Pattern) Java的IO类 使用方法


本文地址: http://blog.csdn.net/caroline_wendy/article/details/26716823


装饰者模式(decorator pattern)参见: http://blog.csdn.net/caroline_wendy/article/details/26707033


Java的IO类使用装饰者模式进行扩展, 其中FilterInputStream类, 就是装饰者(decorator)的基类.

实现其他装饰者(decorator), 需要继承FilterInputStream类.


代码:

/**
 * @time 2014年5月23日
 */
package decorator.io;

import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;

/**
 * @author C.L.Wang
 *
 */
public class LowerCaseInputStream extends FilterInputStream {

	public LowerCaseInputStream(InputStream in) {
		super(in);
	}
	
	public int read() throws IOException {
		int c = super.read();
		return (c==-1 ? c : Character.toLowerCase((char)c));
	}
	
	public int read(byte[] b, int offset, int len) throws IOException {
		int result = super.read(b, offset, len);
		for (int i=offset; i<offset+result; ++i) {
			b[i] = (byte)Character.toLowerCase((char)b[i]);
		}
		return result;
	}
}

测试:

/**
 * @time 2014年5月23日
 */
package decorator.io;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

/**
 * @author C.L.Wang
 *
 */
public class InputTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) throws IOException{
		// TODO Auto-generated method stub
		int c;
		try{
			InputStream in = new LowerCaseInputStream(new BufferedInputStream(new FileInputStream("test.txt")));
			while ((c = in.read()) >= 0) {
				System.out.print((char)c);
			}
			in.close();
		} catch (IOException e){
			e.printStackTrace();
		}
	}

}

通过装饰具体组件类FileInputStream, 实现格式的更改.

注意:Java的文件的默认读取路径为项目的根目录.


bubuko.com,布布扣




设计模式 - 装饰者模式(Decorator Pattern) Java的IO类 使用方法,布布扣,bubuko.com

设计模式 - 装饰者模式(Decorator Pattern) Java的IO类 使用方法

标签:mystra   设计模式   装饰者模式   javaio   面向对象   

原文地址:http://blog.csdn.net/caroline_wendy/article/details/26716823

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!