首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

javaIO容易总结

2012-12-25 
javaIO简单总结使用buffer 在外面 速度慢 这里又要分(文件流,字符流,字节流)使用buffer 在中间 速度快 这

javaIO简单总结
使用buffer 在外面 速度慢 这里又要分(文件流,字符流,字节流)
使用buffer 在中间 速度快 这里又要分(文件流,字符流,字节流)
没有是使用buffer 速度最慢
import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

public class DataOutputStreamTest {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
long t1 = System.currentTimeMillis();
try {
DataInputStream dos=new DataInputStream(
new BufferedInputStream(new FileInputStream("src/bb.txt"))
);
//BufferedInputStream bufferedInputStream = new BufferedInputStream(
//new DataInputStream(new FileInputStream("src/bb.txt")));
//byte bs[]=new byte[bufferedInputStream.available()];
//bufferedInputStream.read(bs,0,bs.length);
//bufferedInputStream.close();
//System.out.println(new String(bs));///total==14904
//String string = null;
//while ((string = dos.readLine()) != null) {
//System.out.println(string);
//}//total==13812
System.out.println(dos.readUTF());//total==15
dos.close();

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
long t2 = System.currentTimeMillis();
System.out.println("total==" + (t2 - t1));

}
} 1 楼 chenhailong 2011-03-01   嗨 你这个是对文件不是写文件啊。怎么起来个这样的名字DataOutputStreamTest
OutputStream。。。。

热点排行