2016年9月23日
摘要: //直接写代码了 类和包自己导入创建 ,手打很累的 public static void main(String args[]){ FileReader fr=null; //文件输入流 FileWriter fw=null; //文件输出流 BufferedReader br=null; //字符 阅读全文
posted @ 2016-09-23 23:18 想想想想想想想~ 阅读(178) 评论(0) 推荐(0) 编辑
摘要: package com.hp.io; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; 阅读全文
posted @ 2016-09-23 22:58 想想想想想想想~ 阅读(682) 评论(0) 推荐(0) 编辑
摘要: package com.hp.io; import java.io.FileOutputStream; import java.io.IOException; public class FileOutputStreamTest{ public static void main(String []ar 阅读全文
posted @ 2016-09-23 22:23 想想想想想想想~ 阅读(1895) 评论(0) 推荐(0) 编辑
摘要: package com.hp.io; import java.io.*; public class BufferedWriterTest{ public static void main(String args[]){ FileWriter fw=null; BufferedWriter bw=nu 阅读全文
posted @ 2016-09-23 21:49 想想想想想想想~ 阅读(535) 评论(0) 推荐(0) 编辑
摘要: package com.hp.io; import java.io.*; public class BufferedReaderTest{ /** *@param 想想 */ public static void main(String args[]){ FileReader fr=null; Bu 阅读全文
posted @ 2016-09-23 21:21 想想想想想想想~ 阅读(365) 评论(0) 推荐(0) 编辑