摘要: import java.io.*; public class Demo02InputStreamReader { public static void main(String[] args) throws IOException { InputStreamReader ifr =new InputS 阅读全文
posted @ 2020-10-11 21:11 159566 阅读(134) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; public class Demo03OutputStreamWriter { public static 阅读全文
posted @ 2020-10-11 21:05 159566 阅读(234) 评论(0) 推荐(0) 编辑
摘要: readline import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; /*readLine读取文本行 * 如果到末尾返回null * * */ public class Demo0 阅读全文
posted @ 2020-10-11 16:14 159566 阅读(111) 评论(0) 推荐(0) 编辑
摘要: newLine 可根据系统改变的换行符号 import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.nio.Buffer; /*使用步骤: 1.创建字符缓冲输出流 阅读全文
posted @ 2020-10-11 15:58 159566 阅读(213) 评论(0) 推荐(0) 编辑
摘要: import javafx.scene.control.ButtonBar; import java.io.*; public class Demo03Copy2 { public static void main(String[] args) throws IOException { long s 阅读全文
posted @ 2020-10-11 15:45 159566 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1.字节缓冲输出流 /* 使用步骤: 1.创建FileOutputStream对象,构造方法中绑定要输出的目的地 2.创建FileOutputStream对象,构造方法中传递FileOutputStream对象,提高FileOutputStream对象效率 3.使用FileOutputStream对 阅读全文
posted @ 2020-10-11 15:23 159566 阅读(213) 评论(0) 推荐(0) 编辑
摘要: import java.io.*; import java.util.Properties; import java.util.Set; public class Demo01Properties { public static void main(String[] args) throws IOE 阅读全文
posted @ 2020-10-10 21:40 159566 阅读(104) 评论(0) 推荐(0) 编辑
摘要: //JDK7import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class Demo07try { public static void main(St 阅读全文
posted @ 2020-10-07 17:35 159566 阅读(142) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileWriter; import java.io.IOException; public class Demo06Write_try_catch_finally { public static void main(String[] args) { FileWrite 阅读全文
posted @ 2020-10-07 17:21 159566 阅读(118) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileWriter; import java.io.IOException; public class Demo04Write { public static void main(String[] args) throws IOException { FileWrit 阅读全文
posted @ 2020-10-07 16:26 159566 阅读(144) 评论(0) 推荐(0) 编辑