版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、lab 4in this lab, you will practice how to use the following classes: l bufferedreader and bufferedwriterl bufferedoutputstream and bufferediutputstream (similar to bufferedreader and bufferedwriter, i am sure you can handle them.) l fileoutputstream and fileinputstreaml dataoutputstream and datainp
2、utstreaml randomaccessfilel objectinputstream and objectoutputstreamtask 1. create a class mylog and it implements one interface called loggable. this class is used to read and write “mylog.log” which contains: the current time, the log type and the content. the definition of loggable is as follows:
3、interfaceloggable / three log types: nformation, warning, errorenum type information, warning, error;/ add one log, including log type and log content.void addlog(loggable.type type, string logcontent);/ show all the logs in the log file.void readlog();the requirements are:l when new logs are added
4、using addlog(), they should be appended to the log file. for example:l when using readlog() to show all the logs in the console, convert all the lower case characters into upper case characters for the contents of each log. for example:*2010-12-25 14:40:02informationthis is a content string*2010-12-
5、25 14:45:02informationthis is a content string*tips:l use bufferedreader and bufferedwriter to read and write the log file.l to get the enum value, use:type.tostring() in the addlog().l pay attention to the date format, you may use the class: simpledateformat. task 2. use fileoutputstream and buffer
6、edoutputstream separately to write 1,000,000 random numbers (double) into a binary file (numbers.dat) and compare the time expenses. write the results and error messages into mylog.log (it is the same log file as in the task 1).l the result is as follows:l the content of the log file is as follows:*
7、2011-11-28 15:06:57informationdone, cost 573 without buffer*2011-11-28 15:06:57informationdone, cost 9 with buffer*2010-12-05 15:07:04erroraccess deny!*l after changing the number.dat into “read only”,run the program again and add the following log. tips:l to calculate the time using:longstarttime =
8、 system.currenttimemillis();/ do somethinglongendtime = system.currenttimemillis();long cost = endtime - starttime;l use dataoutputstream and writedouble()to write data.task 3. write code to search data from numbers.dat by inputting the index of the data you are going to search. the result is as follows:tips:use class: randomaccessfile.task 4 write an object of student in to student.txt, and read the object to show the following information:class student implements serializable private static final long serialversionuid = 1l;int id;int age;string name;string departmen
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年湖南省娄底市社区工作者招聘笔试参考题库及答案解析
- 邢台新能源职业学院《古代文学复兴》2025-2026学年期末试卷
- 福建电力职业技术学院《风电原理与应用技术》2025-2026学年期末试卷
- 长春东方职业学院《货币金融学》2025-2026学年期末试卷
- 长春人文学院《电子政务》2025-2026学年期末试卷
- 厦门理工学院《特殊教育概论》2025-2026学年期末试卷
- 赣南医科大学《外科学》2025-2026学年期末试卷
- 厦门大学嘉庚学院《新疆地方史》2025-2026学年期末试卷
- 长春早期教育职业学院《公共部门人力资源管理》2025-2026学年期末试卷
- 安徽绿海商务职业学院《公司法》2025-2026学年期末试卷
- 2026年宁波慈溪市煤气有限公司下属公司公开招聘工作人员4人建设笔试备考试题及答案解析
- 【地理】 欧洲西部第1课时课件-2025-2026学年人教版(2024)七年级地理下学期
- 芜湖市2026公安机关辅警招聘考试笔试题库(含答案)
- 2026苏科版(新教材)初中数学七年级下册期中知识点复习要点梳理(7-9章)
- 2026中国地铁广告行业营销态势及投资盈利预测报告
- 期中考试模拟试卷(含答案) 2025~2026学年度人教版七年级下册地理
- 广东江西稳派智慧上进教育联考2026届高三年级3月二轮复习阶段检测政治+答案
- 采购防欺诈制度
- 2025-2026学年浙美版(新教材)小学美术二年级下册《我爱运动》教学课件
- 制定单位一把手监督制度
- 10 石蜂 课件 2026统编版三年级语文下册
评论
0/150
提交评论