摘要: TransientTest 阅读全文
posted @ 2019-08-05 17:02 嵌入式实操 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 对Person类实例进行序例化及反序例化: Person.java WriteObject: ReadObject: 阅读全文
posted @ 2019-08-05 16:56 嵌入式实操 阅读(208) 评论(0) 推荐(0) 编辑
摘要: import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class ReadFromProcess { public static void main(String[] args) throws IOException { Pr... 阅读全文
posted @ 2019-08-05 14:14 嵌入式实操 阅读(221) 评论(0) 推荐(0) 编辑
摘要: output redirectionOut: input redirectionIn: 阅读全文
posted @ 2019-08-05 14:00 嵌入式实操 阅读(161) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-08-05 13:46 嵌入式实操 阅读(158) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-08-05 13:29 嵌入式实操 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 有点重定向使用的味道 output: 阅读全文
posted @ 2019-08-05 13:19 嵌入式实操 阅读(164) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileWriter; import java.io.IOException; public class FileWriterTest { public static void main(String[] args) { try { var fw = new FileWriter("pop.txt"); ... 阅读全文
posted @ 2019-08-05 13:13 嵌入式实操 阅读(80) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class FileOutputStreamTest { public static void main(Str... 阅读全文
posted @ 2019-08-05 13:12 嵌入式实操 阅读(82) 评论(0) 推荐(0) 编辑
摘要: import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.nio.charset.Charset; public class FileReaderTest { public static void main(String[] args)... 阅读全文
posted @ 2019-08-05 13:11 嵌入式实操 阅读(128) 评论(0) 推荐(0) 编辑
摘要: public class FileInputStreamTest { public static void main(String[] args) throws IOException { var fis = new FileInputStream("FileInputStreamTest.java"); var bbuf = new byte[1024]... 阅读全文
posted @ 2019-08-05 13:10 嵌入式实操 阅读(105) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-08-05 10:42 嵌入式实操 阅读(72) 评论(0) 推荐(0) 编辑
摘要: output: 阅读全文
posted @ 2019-08-05 10:41 嵌入式实操 阅读(323) 评论(0) 推荐(0) 编辑