2011北京电大Java语言跟面向对象程序设计基础实验四_第1页
2011北京电大Java语言跟面向对象程序设计基础实验四_第2页
2011北京电大Java语言跟面向对象程序设计基础实验四_第3页
2011北京电大Java语言跟面向对象程序设计基础实验四_第4页
2011北京电大Java语言跟面向对象程序设计基础实验四_第5页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

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

文档简介

2011 北京电大 Java 语言与面向对象程序设计基础实验四Java 语言与面向对象程序设计基础课程 实验报告四 姓名:xx 学号:10110014xxxx实验题 1 实验要求 在“C:Test“目录中新建“a.txt“文件,并存入 26 个英文大写字母。 实验程序 Test4_1.java 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); 运行结果 实验结论与收获 1、学习了 java 输入输入出 IO 流创建文件夹判断文件写入文件。 实验题 2 实验要求 将实验 1 题中新建的“a.txt“文件内容复制到“C:TestEx“目录中“b.txt“文件中。 实验程序 Test4_2.java 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); 运行结果 实验结论与收获 1、学习了 java 的 IO 流读写的方法。 实验题 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); 运行结果 实验结论与收获 1、学习了 java RandomAccessFile 类的使用。 实验题 4 实验要求 调试并记录多线程程序(生产者/消费者实例)结果。 体会多线程机制。 实验程序 Producer.java class 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) Consumer.java class 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) SStack.java class 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.java public class STest public static void main(String args) SStack stack = new SStack(); Runnable p=new P

温馨提示

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

评论

0/150

提交评论