摘要: import java.io.*; public class TestBufferedReader{ public static void main(String[] args){ try{ BufferedReader br = new BufferedReader(new FileReader( 阅读全文
posted @ 2020-03-02 15:57 yxfyg 阅读(582) 评论(0) 推荐(0)
摘要: import java.io.*; public class TestFileOutputStream{ public static void main(String[] args){ try{ FileOutputStream out = new FileOutputStream("D:/Java 阅读全文
posted @ 2020-03-02 11:43 yxfyg 阅读(359) 评论(0) 推荐(0)
摘要: import java.io.*; public class TestFileInputStream{ public static void main(String[] args){ FileInputStream in = null; try{ in = new FileInputStream(" 阅读全文
posted @ 2020-03-02 11:06 yxfyg 阅读(1057) 评论(0) 推荐(0)