西农java英语实习题目_第1页
西农java英语实习题目_第2页
西农java英语实习题目_第3页
西农java英语实习题目_第4页
西农java英语实习题目_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论