欢迎来到天天文库
浏览记录
ID:30828179
大小:61.50 KB
页数:7页
时间:2019-01-03
《实验五_java_输入输出流》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实验五Java输入输出流1.实验目的(1)掌握输入输出流的总体结构;(2)掌握流的概念;(3)了解齐种流(包括文件流、管道流、连接文件、过滤流、对象的序列化、随机访问)的使用。2.实验内容实验题1编写一个JavaApplication程序,打卬命令彳亍输入的所有参数。[基本要求]编写完整程序。importjava.util.Scanner;publicclassxinxi{publicstaticvoidmain(StringlJargs){Stringname;StringSage;intage;StringSsore;doublesore;Scannerin
2、=newScanner(System.in);System.out.println(M请输入你的姓名:”);name=in.nextLine();System.out.println("请输入您的年龄:”);Sage=in.nextLine();age=Integer.parselnt(Sage);System,out.println("请输入您的分数”);Ssore=in.nextLine();sore=Double,parseDouble(Ssore);System.out.println(name+nH+age+Hn+sore);Problems@Java
3、docDeclaration§Consoleerminated>xinxi[JavaApplication]C:ProgramFilesGenuitec请输入你的姓名:niuiqn请输入您的年龄:21请输入您的分数100niuiqn21100.0实验题2阅读卜而程序,叙述其功能packagecn.edu.nwsuaf.jp;importjava.io.FileReader;importjava.io.IOException;publicclassFileViewer{/**Definestheentrypointoftheprogram.*/publicst
4、aticvoidmain(String[Jargs){System.out.println(HPleaseenterthefilepath:”);try{StringfileName=while(true){intreadByte=System.in>read();if(readByte==-1IIreadByte==V)break;fileName+=(char)readByte;}//ReadsthetileandprintsittotheSystem.outstream.char[Jbuffer=newchar[20J;FileReaderreader=n
5、ewFileReader(fileName);while(true){intlength=reade匚read(buffer);if(length<0)//Readsalongasthereismoredata.break;Stringtext=newString(buffer,0,length);System,out.print(text);}}catch(IOExceptione){e.printStackTrace();}}}[基木要求]写出木题程序的功能。程序的功能是:在控制台输入绝对路径,并打开绝对路径下的内容。实验题3设计一个类FileRWTest,
6、实现从input.txt文件屮读入数据到字符数组eBuffer中,然后再写入到文件“output.txt中。[基本要求]编写完整程序。importjava.io.*;publicclassFileRWTest{publicstaticvoidmain(String[]args)throwsFileNotFoundException{intrs;Filefile=newFile(nD:\haon,HInput.txtH);Filefileout=newFile(',D:\hao","Output.txtn);FilelnputStreamfis=newFile
7、lnputStream(file);FileOutputStreamfos=newFileOutputStream(fileout,true);InputStreamReaderisr=newInputStreamReader(fis);OutputStreamWriterout=newOutputStreamWriter(fos);try{while((rs=is匸read())!=-l)charcBuffer=(char)rs;out.write((int)cBuffer);}}catch(IOExceptione){e.printStackTrace();
8、isr.close();
此文档下载收益归作者所有