米字键

博客园 首页 新随笔 联系 订阅 管理

2019年3月26日 #

摘要: package text;import java.io.BufferedWriter;import java.io.FileWriter;import java.io.IOException;public class Buff6 { public static void main(String[] 阅读全文
posted @ 2019-03-26 18:52 米字键 阅读(121) 评论(0) 推荐(0) 编辑

摘要: package text;import java.io.BufferedReader;import java.io.FileReader;import java.io.IOException; public class Buff5 { public static void main(String[] 阅读全文
posted @ 2019-03-26 18:40 米字键 阅读(191) 评论(0) 推荐(0) 编辑

摘要: package text;import java.io.BufferedOutputStream;import java.io.FileOutputStream;import java.io.IOException;public class Buff2 { public static void ma 阅读全文
posted @ 2019-03-26 18:22 米字键 阅读(249) 评论(0) 推荐(0) 编辑

摘要: import java.io.BufferedOutputStream;import java.io.FileOutputStream;import java.io.IOException; public class Buff2 { public static void main(String[] 阅读全文
posted @ 2019-03-26 17:00 米字键 阅读(135) 评论(0) 推荐(0) 编辑

摘要: import java.io.*; // 字节传输的缓冲流 public class Buff1 { public static void main(String[] args) { BufferedInputStream bos=null; try { // 读取D盘的内容 bos=new Buf 阅读全文
posted @ 2019-03-26 16:44 米字键 阅读(410) 评论(0) 推荐(0) 编辑

摘要: import java.io.*;/* * 字节传输的缓冲流 * * 用字节传输的缓冲流进行文件的复制 * * 实现复制文件 * * */ public class BuffF { public static void main(String[] args) { // 定义路径为空 FileInpu 阅读全文
posted @ 2019-03-26 16:23 米字键 阅读(470) 评论(0) 推荐(0) 编辑