欢迎来到天天文库
浏览记录
ID:6040625
大小:396.00 KB
页数:75页
时间:2017-12-31
《尚硅谷java基础源码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、IO:packagecom.atguigu.javase.lesson10;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.FileReader;importjava.io.IOException;importjava.io.InputStream;importjava.io.OutputStream;importjava.io.Reader;importorg.junit
2、.Test;publicclassIOTest{/***利用字符输入输出流,完成hello.txt文件的复制.*把该文件复制为hello2.txt*@throwsIOException*//***利用字节输入输出流,完成hello.txt文件的复制.*把该文件复制为hello2.txt*@throwsIOException*/@TestpublicvoidtestCopyFile()throwsIOException{//1.创建定位到hello.txt的文件的输入流InputStreamin=newFileInputStream("枚举类.avi");//2.创建定位到hello
3、2.txt的文件输出流OutputStreamout=newFileOutputStream("枚举类2.avi");//3.创建一个byte数组,用于读写文件byte[]buffer=newbyte[1024*10];intlen=0;//4.读写文件://in.read(buffer);out.write(buffer,0,len);while((len=in.read(buffer))!=-1){out.write(buffer);}//5.关闭流资源.out.close();in.close();}/***测试字节输出流*@throwsIOException*/@Testp
4、ublicvoidtestOutputStream()throwsIOException{OutputStreamout=newFileOutputStream("abcd.txt");Stringcontent="www.atguigu.comHelloJava!";//intlen=10;////byte[]contentBytes=content.getBytes();////for(inti=0;i5、///if(content.length()%10!=0){//out.write(contentBytes,10*(content.length()/10),//content.length()-(10*(content.length()/10)));//}out.write(content.getBytes());out.close();}/***测试字符输入流.*@throwsIOException*/@TestpublicvoidtestReader()throwsIOException{//利用字符输入流读取hello.txt文档的内容,输出到控制台.Readerread6、er=newFileReader("hello.txt");char[]buffer=newchar[10];intlen=0;while((len=reader.read(buffer))!=-1){for(inti=0;i7、ream("hello.txt");//2.读取文件的内容//2.1第一读取一个字节.效率很低,不建议这样读.-1表示读取到文件的结尾处//intresult=in.read();////while(result!=-1){//System.out.print((char)result);//result=in.read();//}//2.2一次读取一组:一组字符.//返回一次实际读取的字节数,若为-1表示读取到文件的结尾//byte[]buffer=newbyte[
5、///if(content.length()%10!=0){//out.write(contentBytes,10*(content.length()/10),//content.length()-(10*(content.length()/10)));//}out.write(content.getBytes());out.close();}/***测试字符输入流.*@throwsIOException*/@TestpublicvoidtestReader()throwsIOException{//利用字符输入流读取hello.txt文档的内容,输出到控制台.Readerread
6、er=newFileReader("hello.txt");char[]buffer=newchar[10];intlen=0;while((len=reader.read(buffer))!=-1){for(inti=0;i7、ream("hello.txt");//2.读取文件的内容//2.1第一读取一个字节.效率很低,不建议这样读.-1表示读取到文件的结尾处//intresult=in.read();////while(result!=-1){//System.out.print((char)result);//result=in.read();//}//2.2一次读取一组:一组字符.//返回一次实际读取的字节数,若为-1表示读取到文件的结尾//byte[]buffer=newbyte[
7、ream("hello.txt");//2.读取文件的内容//2.1第一读取一个字节.效率很低,不建议这样读.-1表示读取到文件的结尾处//intresult=in.read();////while(result!=-1){//System.out.print((char)result);//result=in.read();//}//2.2一次读取一组:一组字符.//返回一次实际读取的字节数,若为-1表示读取到文件的结尾//byte[]buffer=newbyte[
此文档下载收益归作者所有