文件拆分、合并
2018-06-18 00:51:26来源:未知 阅读 ()
import java.io.*; public class IOTest { public static void main(String[] args){ //拆分文件 devide(); //合并文件 merge(); } public static void devide(){ //要被拆分的目标文件 File file = new File("E:\\merge\\sxcs项目执行流程.txt"); //文件读写流 FileInputStream fileInputStream = null; FileOutputStream fileOutputStream = null; int num = 0; try { //获取文件的输入流,用来读取文件 fileInputStream = new FileInputStream(file); //每次读的字节大小为100k byte[] by = new byte[100]; while((fileInputStream.read(by)) != -1){ //新建存放拆分后字节的文件 File files = new File("E:\\merge\\sxcs项目执行流程"+num+".txt"); //获取输入流 fileOutputStream = new FileOutputStream(files); //写入文件 fileOutputStream.write(by); num++; //重新初始化by数组,清空内容,如果拆分后源文件不是100的整数倍, 写入文件后会将上一个子文件的一部分写进去 by = new byte[100]; } } catch (FileNotFoundException e) { e.printStackTrace(); }catch (IOException e) { e.printStackTrace(); }finally{ try { if(fileOutputStream != null){ fileOutputStream.close(); } if(fileInputStream != null){ fileInputStream.close(); } } catch (IOException e) { e.printStackTrace(); } } } public static void merge(){ //要合并的文件所在目录, 用来获取需要合并的文件集合 File file = new File("E:\\merge"); //合并后文件存放的位置 File outFile = new File("E:\\merge\\merge.txt"); //获取需要合并的文件集合 File[] filelistFiles = file.listFiles(); FileInputStream fileInputStream = null; FileOutputStream fileOutputStream = null; //循环每一个文件, 合并到一个文件重 for(File f : filelistFiles){ try { //存储字节大小为文件大小 byte[] by = new byte[(int)f.length()]; fileInputStream = new FileInputStream(f); fileInputStream.read(by); //将读取出来的文件,采用追加的方式添加到文件中 fileOutputStream = new FileOutputStream(outFile,true); fileOutputStream.write(by); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); }catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { if(fileInputStream != null){ fileInputStream.close(); } if(fileOutputStream != null){ fileOutputStream.close(); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Spire.Cloud.SDK for Java 合并、拆分Excel单元格 2020-06-09
- Spring Boot 实现配置文件加解密原理 2020-06-08
- Java跨平台原理(字节码文件、虚拟机) 以及Java安全性 2020-06-07
- 【Java-jxl插件】【Excel文件读写报错】jxl.read.biff.BiffE 2020-06-07
- IDEA下Maven的pom文件导入依赖出现Auto build completed wit 2020-06-07
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash