publicclassClient{ publicstaticvoidmain(String[] args){ House house = new RoughHouse();
house = new BrushingHouseDecorate(house); house = new TrunkingHouseDecorate(house); house = new CustomizedFurnitureHouseDecorate(house); house = new DoorWindowHouseDecorate(house);
DataInputStream in = new DataInputStream(new FileInputStream("test.txt")); String str; while ((str = in.readLine())!=null){ System.out.println(str); } in.close();
查看DataInputStream源码
1 2 3 4 5 6 7 8 9 10 11 12 13 14
public classDataInputStreamextendsFilterInputStreamimplementsDataInput{
/** * Creates a DataInputStream that uses the specified * underlying InputStream. * * @param in the specified input stream */ publicDataInputStream(InputStream in){ super(in); } ...... }
public classFilterInputStreamextendsInputStream{ /** * The input stream to be filtered. */ protectedvolatile InputStream in;
/** * Creates a <code>FilterInputStream</code> * by assigning the argument <code>in</code> * to the field <code>this.in</code> so as * to remember it for later use. * * @param in the underlying input stream, or <code>null</code> if * this instance is to be created without an underlying stream. */ protectedFilterInputStream(InputStream in){ this.in = in; }