欢迎来到天天文库
浏览记录
ID:59380059
大小:77.50 KB
页数:9页
时间:2020-01-24
《货物进销管理系统.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、word格式《Java程序设计》实验报告--实验2实验室:2014年12月10日学院计算机与信息学院专业班级姓名成绩课程名称Java程序设计实验项目名称实验二货物进销管理系统指导教师教师评语教师签名:年月日一、实验目的1.掌握Java中文件的读写操作。2.学会使用Java提供的实用类(Vector,ArrayList)来完成特定的功能。3.掌握字符串类(String,StringBuffer)的使用。4.掌握用面向对象的方法分析和解决复杂问题。二、实验原理1.程序首先打开并读取Inventory.dat中记录的所有库存记录,然后读取Transactions.dat,处理这个文件
2、中包含的事务,记录发货记录到Shipping.dat,并记录错误信息到Errors.dat中。最后更新库存到另外一个文件NewInventory.dat中。三、使用硬件、软件环境PC计算机一台,配置为CPU为2.6G,内存为4G,硬盘为1T,安装Windows8操作系统。另外,使用JCreator,JDK1.8.0等软件四、实验过程、步骤及原始记录(算法、原程序、测试结果,分析等)1.实验过程:首先在电脑中新建5个dat文件。分别为Inventory.dat、Transactions.dat、Shipping.dat、Errors.dat、NewInventory.dat;在I
3、nventory.dat、Transactions.dat中写要求的实验信息。程序先打开Inventory.dat、Transactions.dat文件,读取其中的数据,分析Transactions.dat中的数据,分类进行处理,最后将更新的Inventory.dat数据复制到NewInventory.dat中....word格式2.源程序:importjava.io.*;/*保存Inventory.dat中的数据*/classhuowu{StringitemNumber;intquantity;Stringsupplier;Stringdescription;intbiaoj
4、i=1;}/*保存Transaction中的数据*/classtrans{Stringtype;StringitemNumber;intquantity;Stringsupplier;Stringdescription;}/*用来保存"O"交易数据的中间类,以满足quantity大的最后进行交易*/classfuzhu{StringitemNumber;intquantity;Stringsupplier;}publicclassInventory{publicstaticvoidmain(String[]args){huowu[]huo=newhuowu[100];inthu
5、olength=0;trans[]tra=newtrans[100];inttralength=0;fuzhu[]fz=newfuzhu[100];intfzlength=0;try{Strings=null;/*读取Inventory.dat中的数据,保存到内存*/BufferedReaderinvent=newBufferedReader(newFileReader("Inventory.dat"));char[]str;while((s=invent.readLine())!=null){str=s.toCharArray();intt=0;inti=0;intx=0;S
6、trings1;....word格式huo[huolength]=newhuowu();while(i7、ength++].description=newString(s1);i++;t=i;}}invent.close();}catch(Exceptione){System.out.println("error1");}/*读取Transaction.dat中的数据,保存到内存*/try{Strings=null;BufferedReadertr=newBufferedReader(newFileReader("Transactions.dat"));char[]str;while((s=tr
7、ength++].description=newString(s1);i++;t=i;}}invent.close();}catch(Exceptione){System.out.println("error1");}/*读取Transaction.dat中的数据,保存到内存*/try{Strings=null;BufferedReadertr=newBufferedReader(newFileReader("Transactions.dat"));char[]str;while((s=tr
此文档下载收益归作者所有