




已阅读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 i 26 i out write char A i out close catch IOException e System out println e 运行结果 实验结论与收获 掌握文件及文件夹的创建及文件的写入 实验题 2 实验要求 将实验 1 题中新建的 a txt 文件内容复制到 C Test Ex 目录中 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 java class Consumer implements Runnable SStack theStack public Consumer SStack s theStack s public void run char c for int i 0 i 20 i c theStack pop System out println Consumed c try Thread sleep int Math random 1000 catch InterruptedException e Producer java class Producer implements Runnable SStack theStack public Producer SStack s theStack s public void run char c for int i 0 i 20 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 java class SStack private int index 0 private char data new char 10 public synchronized void push char c while index data length try this wait catch InterruptedException e this notify data index c index public synchronized char pop while index 0 try this wait catch InterruptedException e this notify index return data index STest java public class STest public static void main String args SStack stack new SStack Runnable p
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 电缆回收避坑知识培训课件
- 湖南省娄底市涟源市2022-2023学年九年级上学期期中化学试题(含答案)
- 戏剧教学法在小学英语课堂教学中的应用
- 电煤知识培训总结报告课件
- 高空安全知识培训课件教学
- 本溪初二语文考试题目及答案
- 高热惊厥讲解课件
- Penicillin-V-b-sulfoxide-d3-生命科学试剂-MCE
- 北华大学日语考试题库及答案
- 保育理论考试考那些题及答案
- GB/T 12234-2019石油、天然气工业用螺柱连接阀盖的钢制闸阀
- 全套教学课件《公共艺术(音乐)》
- 3.1《太阳系大家庭》课件
- 高中数学《基于问题链的数学教学探索》课件
- (卓越绩效)质量奖申报材料
- 同创伟业投资分析报告(附358家被投企业介绍)
- 数学-四年级(上册)-人教版-《亿以上数的认识及读法》教学课件
- 政治经济学ppt课件汇总(完整版)
- 消费者行为学全书电子教案完整版课件
- 互联网保险概述课件
- 怎样做一名合格的高校中层领导干部( 54页)
评论
0/150
提交评论