Java技术 第九次实验
(一)学习总结
1.用思维导图对javaIO操作的学习内容进行总结。
参考资料: XMind。
2.下面的程序实现了文件的拷贝,但采用的是一个字节一个字节的读写方式,效率很低。使用缓冲区可以减少对文件的操作次数,从而提高读写数据的效率。IO包中提供了两个带缓冲的字节流BufferedInputStream和BufferedOutputStream,查阅JDK帮助文档,修改程序,利用这两个类完成文件拷贝,对比执行效率。
import java.io.*;
public class Test{
public static void main(String args[]) {
FileInputStream in=null;
FileOutputStream out=null;
File fSource=new File("d:"+File.separator+"my.jpg");
File fDest=new File("d:"+File.separator+"java"+File.separator+"my.jpg");
if(!fSource.exists()){
System.out.println("源文件不存在");
System.exit(1);
}
if(!fDest.getParentFile().exists()){
fDest.getParentFile().mkdirs();
}
try {
in=new FileInputStream(fSource);
out=new FileOutputStream(fDest);
int len=0;
long begintime = System.currentTimeMillis();
while((len=in.read())!=-1){
out.write(len);
}
long endtime = System.currentTimeMillis();
System.out.println("文件拷贝完成,耗时"
+(endtime-begintime)+"毫秒");
}catch(Exception e){
System.out.println("文件操作失败");
}finally{
try {
in.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
运行结果:文件拷贝完成,耗时406毫秒
修改:
import java.io.*;
public class Test{
public static void main(String args[]) {
FileInputStream in=null;
FileOutputStream out=null;
File fSource=new File("e:"+File.separator+"text.txt");
File fDest=new File("e:"+File.separator+"java"+File.separator+"my.txt");
if(!fSource.exists()){
System.out.println("源文件不存在");
System.exit(1);
}
if(!fDest.getParentFile().exists()){
fDest.getParentFile().mkdirs();
}
try {
in=new FileInputStream(fSource);
out=new FileOutputStream(fDest);
int len=0;
byte[] b = new byte[1024];
long begintime = System.currentTimeMillis();
while((len=in.read(b))!=-1){
out.write(b,0,len);
}
long endtime = System.currentTimeMillis();
System.out.println("文件拷贝完成,耗时"
+(endtime-begintime)+"毫秒");
}catch(Exception e){
System.out.println("文件操作失败");
}finally{
try {
in.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
3.其他需要总结的内容。
(二)实验总结
实验内容:
1.宠物商店:在实验八的基础上,增加一个功能,用文件保存每日的交易信息记录。
2.完成文件复制操作,在程序运行后,提示输入源文件路径和目标文件路径。
完成实验内容,代码上传到码云,注意,宠物商店要求务必将创建数据库的脚本文件随项目文件一起上传,在随笔中分析程序设计思路,用PowerDesigner画出类图结构,并对完成实验内容过程中遇到的问题、解决方案和思考等进行归纳总结,注意代码中必须有必要的注释。
格式如下:
程序设计思路:首先,创建进入界面,选择注册或登录;点击注册,进入注册界面,进行注册;新用户注册后立刻调转到登录界面,登陆后显示宠物管理页面,显示宠物清单
创建一个主方法类,建vo包宠物类,用户类,图片,工具类,view包用户界面,管理员界面,注册界面,登录界面链接数据库对上次的程序作修改。增加购买功能用文件保存每日的交易信息记录
类图结构:
问题1:用户购买宠物共消费的总价格的类型装换不过来
原因:对包装还是不太理解
解决方案:强制装换成int类型用Integer.parseInt()方法,其与方法类似但若要强制转换成string类型则需要用String.valueOf()方法。
(三)代码托管(务必链接到你的项目)
https://git.oschina.net/hebau_cs15/java-cs01yangliu.git
码云commit历史截图
上传实验项目代码到码云,在码云项目中选择“统计-commits”,设置搜索时间段,搜索本周提交历史,并截图。
(四)学习进度条
代码行数(新增/累积) | 学习时间(新增/累积) | 本周学习内容 | |
---|---|---|---|
目标 | 5000行 | 300小时 | |
第2-4周 | 340 | 20 | 学习了java的基本知识.... |
第5周 | |||
第6周 | 324 | 10 | |
第8周 | 656 | 13 | |
第9周 | 463 | 10 | |
第11周 | 420 | 12 | |
第12周 | 933 | 10 | |
第13周 | 1110 | 12 | |
第14周 | 1423 | 10 |