Java语言实验报告四.doc_第1页
Java语言实验报告四.doc_第2页
Java语言实验报告四.doc_第3页
Java语言实验报告四.doc_第4页
Java语言实验报告四.doc_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

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

文档简介

Java语言与面向对象程序设计基础课程实验报告四姓名: 学号:111*实验题1实验要求 掌握Java IO流处理 掌握文件操作 掌握多线程程序设计实验程序import java.io.*;public class Test4_1 public static void main(String args) try File myDir=new File(C:/Test);if ( !myDir.exists() myDir.mkdir();else if ( !myDir.isDirectory() System.err.println( C:/Test is not a directory); return;File f=new File(myDir,a.txt);f.createNewFile();FileWriter out = new FileWriter(f); for (int i=0;i26;i+) out.write(char)(A+i); out.close(); catch (IOException e) System.out.println(e); 运行结果实验结论与收获掌握文件及文件夹的创建及文件的写入。实验题2实验要求将实验1题中新建的a.txt文件内容复制到C:TestEx目录中b.txt文件中。实验程序import java.io.*;public class Test4_2 public static void main(String args) try File myDir=new File(C:/Test/Ex); if ( !myDir.exists() myDir.mkdir(); else if ( !myDir.isDirectory() System.err.println(myDir+ is not a directory); return; File myFile =new File(myDir,b.txt); myFile.createNewFile(); FileReader in= new FileReader(C:/Test/a.txt); BufferedReader bufIn = new BufferedReader(in); FileWriter out= new FileWriter (myFile); BufferedWriter bufOut= new BufferedWriter(out); String line; line = bufIn.readLine(); /System.out.println(line); while ( line!= null ) System.out.println(line); bufOut.write(line,0,line.length(); bufOut.newLine(); line = bufIn.readLine(); bufIn.close(); bufOut.close(); catch (IOException e) System.out.println(e); 运行结果实验结论与收获掌握文件读取和写入。实验题3实验要求 将实验1题中新建的“a.txt”文件中写入字符“*”,替换第6个字符。实验程序import java.io.*;public class Test4_3 public static void main(String args) try RandomAccessFile r = new RandomAccessFile(C:/Test/a.txt,rw); r.seek(5); r.write(*); r.close(); catch (IOException e) System.out.println(e); 运行结果实验结论与收获掌握随机文件创建与写入。实验题4实验要求 调试并记录多线程程序(生产者/消费者实例)结果。 体会多线程机制。实验程序Consumer.javaclass Consumer implements Runnable SStack theStack; public Consumer(SStack s) theStack = s; public void run() char c; for (int i=0;i20;i+) c = theStack.pop(); System.out.println(Consumed: +c); try Thread.sleep(int)(Math.random()*1000); catch(InterruptedException e) Producer.javaclass Producer implements Runnable SStack theStack; public Producer(SStack s) theStack = s; public void run() char c; for(int i=0; i20; i+) c =(char)(Math.random()*26+A); theStack.push(c); System.out.println(Produced: +c); try Thread.sleep(int)(Math.random()*100); catch(InterruptedException e) SStack.javaclass SStack private int index = 0;private char data = new char10;public synchronized void push(char c)while(index = data.length)try this.wait();catch(InterruptedException e) this.notify();dataindex = c; index+;public synchronized char pop() while(index =0)try this.wait();catch(InterruptedException e) this.notify(); index-; return dataindex;STest.javapublic class STestpublic static void main(String args)SStack stack = new SStack();Runnable p=ne

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论