import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.io.RandomAccessFile;
import java.io.Reader;
import java.util.ArrayList;
import java.util.List; /**
* java文件处理工具类
*
* @author lay at 2014年8月8日11:30:38
*
* @version 1.0
*/
public class FileUtil {
/**
* 复制文件
*
* @param srcPath
* 源文件
* @param desPath
* 目标文件
* @return boolean 是否复制成功
*/
public static boolean copyFile(String srcPath, String desPath) {
FileInputStream is = null;
OutputStream os = null;
BufferedInputStream bufInput = null;
BufferedOutputStream bufOnput = null;
File file = new File(desPath);
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
if (file.exists()) {
file = null;
return false;
}
if (!new File(srcPath).exists()) {
return false;
}
try {
is = new FileInputStream(srcPath);
os = new FileOutputStream(desPath);
bufInput = new BufferedInputStream(is);
bufOnput = new BufferedOutputStream(os);
int read = bufInput.read();
while (read != -1) {
bufOnput.write(read);
read = bufInput.read();
}
bufOnput.flush();
return true;
} catch (IOException e) {
return false;
} finally {
try {
if (bufInput != null) {
bufInput.close();
bufInput = null;
}
} catch (Exception e) {
}
try {
if (bufOnput != null) {
bufOnput.close();
bufOnput = null;
}
} catch (Exception e) {
} try {
if (os != null) {
os.close();
os.close();
}
} catch (Exception e) {
}
try {
if (is != null) {
is.close();
is.close();
}
} catch (Exception e) {
} }
} /**
* 以对象流将对象写入文件
*
* @param filePath
* @param obj
*/
public static void writeObject(String filePath, Object obj) {
OutputStream os = null;
ObjectOutputStream oos = null;
File file = new File(filePath);
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
try {
os = new FileOutputStream(filePath);
oos = new ObjectOutputStream(os);
oos.writeObject(obj);
oos.flush();
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (oos != null) {
oos.close();
oos = null;
}
} catch (Exception e) {
e.printStackTrace();
}
try {
if (os != null) {
os.close();
os = null;
}
} catch (Exception e) {
e.printStackTrace();
}
}
} /**
* 以对象流从文件中读取对象
*
* @param filePath
* @return
*/
public static Object readObject(String filePath) {
Object obj = null;
FileInputStream is = null;
ObjectInputStream ois = null;
try {
is = new FileInputStream(filePath);
ois = new ObjectInputStream(is);
obj = ois.readObject();
} catch (Exception e) {
} finally {
try {
if (ois != null) {
ois.close();
}
} catch (IOException e) {
}
try {
if (is != null) {
is.close();
}
} catch (IOException e) {
}
}
return obj;
} /**
* 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
*
* @param fileName
* 文件的名
* @return
*/
public static byte[] readFileByBytes(String fileName) {
InputStream in = null;
byte[] b = null;
try {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] tempbytes = new byte[1024];
int len = 0;
in = new FileInputStream(fileName);
while ((len = in.read(tempbytes)) != -1) {
baos.write(tempbytes, 0, len);
}
byte[] temp = baos.toByteArray();
System.arraycopy(temp, 0, b, 0, temp.length);
baos = null;
temp = null;
} catch (Exception e1) {
e1.printStackTrace();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e1) {
}
}
}
return b;
} /**
* 以字符为单位读取文件,常用于读文本,数字等类型的文件
*
* @param fileName
* 文件名
* @return
*/
public static char[] readFileByChars(String fileName) {
File file = new File(fileName);
Reader reader = null;
char[] ch = null;
try {
reader = new InputStreamReader(new FileInputStream(file));
List<Character> list = new ArrayList<Character>();
int tempchar;
while ((tempchar = reader.read()) != -1) {
list.add((char) tempchar);
}
reader.close();
ch = new char[list.size()];
for (int i = 0; i < list.size(); i++) {
ch[i] = list.get(i);
}
} catch (Exception e) {
e.printStackTrace();
}
return ch;
} /**
* 以行为单位读取文件,常用于读面向行的格式化文件
*
* @param fileName
* 文件名
* @return
*/
public static String[] readFileByLines(String fileName) {
File file = new File(fileName);
FileInputStream fis = null;
InputStreamReader isr = null; BufferedReader reader = null;
String[] strs = null;
try {
List<String> list = new ArrayList<String>();
fis = new FileInputStream(file);
// 如果是windows自建的txt,其自带编码格式GBK,读的时候需要自带编码如下
// isr = new InputStreamReader(fis, "GBK");
isr = new InputStreamReader(fis);
reader = new BufferedReader(isr); String tempString = null;
while ((tempString = reader.readLine()) != null) {
list.add(tempString);
}
reader.close();
strs = new String[list.size()];
strs = list.toArray(strs);
list = null;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e1) {
}
}
if (isr != null) {
try {
isr.close();
} catch (IOException e1) {
}
}
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
} }
return strs;
} /**
* 随机读取文件内容
*
* @param fileName
* 文件名
*/
public static void readFileByRandomAccess(String fileName) {
RandomAccessFile randomFile = null;
try {
// 打开一个随机访问文件流,按只读方式
randomFile = new RandomAccessFile(fileName, "r");
// 文件长度,字节数
long fileLength = randomFile.length();
// 读文件的起始位置
int beginIndex = (fileLength > 4) ? 4 : 0;
// 将读文件的开始位置移到beginIndex位置。
randomFile.seek(beginIndex);
byte[] bytes = new byte[10];
int byteread = 0;
// 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
// 将一次读取的字节数赋给byteread
while ((byteread = randomFile.read(bytes)) != -1) {
System.out.write(bytes, 0, byteread);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (randomFile != null) {
try {
randomFile.close();
} catch (IOException e1) {
}
}
}
} /**
* A方法追加文件:使用RandomAccessFile
*
* @param fileName
* 文件名
* @param content
* 追加的内容
*/
public static void appendMethodA(String fileName, String content) {
try {
// 打开一个随机访问文件流,按读写方式
RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");
// 文件长度,字节数
long fileLength = randomFile.length();
// 将写文件指针移到文件尾。
randomFile.seek(fileLength);
randomFile.writeBytes(content);
randomFile.close();
} catch (IOException e) {
e.printStackTrace();
}
} /**
* B方法追加文件:使用FileWriter
*
* @param fileName
* 文件名
* @param content
* 追加的内容
*/
public static void appendMethodB(String fileName, String content) {
try {
// 打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件
FileWriter writer = new FileWriter(fileName, true);
writer.write(content);
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
} }

  

java文件处理工具类的更多相关文章

  1. Java 文件切割工具类

    Story: 发送MongoDB 管理软件到公司邮箱,工作使用. 1.由于公司邮箱限制附件大小,大文件无法发送,故做此程序用于切割大文件成多个小文件,然后逐个发送. 2.收到小文件之后,再重新组合成原 ...

  2. java文件读写工具类

    依赖jar:commons-io.jar 1.写文件 // by FileUtilsList<String> lines = FileUtils.readLines(file, " ...

  3. Java文件类型工具类

    package *; import java.util.HashMap; import java.util.Map; /** * <p> * <b>FileTypeEnum2& ...

  4. Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类

    Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类 ============================== ©Copyright 蕃薯耀 20 ...

  5. Java 压缩文件夹工具类(包含解压)

    依赖jar <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons ...

  6. 文件类型工具类:FileTypeUtil

    个人学习,仅供参考! package com.example.administrator.filemanager.utils;import java.io.File;/** * 文件类型工具类 * * ...

  7. HttpTool.java(在java tool util工具类中已存在) 暂保留

    HttpTool.java 该类为java源生态的http 请求工具,不依赖第三方jar包 ,即插即用. package kingtool; import java.io.BufferedReader ...

  8. 文件夹工具类 - FolderUtils

    文件夹工具类,提供创建完整路径的方法. 源码如下:(点击下载 -FolderUtils.java .commons-io-2.4.jar ) import java.io.File; import o ...

  9. Java 敏感词过滤,Java 敏感词替换,Java 敏感词工具类

    Java 敏感词过滤,Java 敏感词替换,Java 敏感词工具类   =========================== ©Copyright 蕃薯耀 2017年9月25日 http://www ...

随机推荐

  1. InputStream的封装类

    package ex03.pyrmont.connector.http; import java.io.IOException; import java.io.InputStream; import ...

  2. open files

    /* * * Copyright (c) International Business Machines Corp., 2001 * * This program is free software; ...

  3. 《More Effective C++》 条款5 谨慎定义类型转换函数

    ---恢复内容开始--- C++编译器能够在两种数据类型之间进行隐式转换(implicit conversions),它继承了C语言的转换方法,例如允许把char隐式转换为int和从short隐式转换 ...

  4. 【HDOJ】4109 Instrction Arrangement

    差分约束. /* 4109 */ #include <iostream> #include <queue> #include <vector> #include & ...

  5. Linux Shell编程(24)——命令替换

    命令替换 将会重新分配一个命令[1]甚至是多个命令的输出; 它会将命令的输出如实地添加到另一个上下文中. [2]使用命令替换的典型形式是使用后置引用(`...`). 后置引用形式的命令(就是被反引号括 ...

  6. (转载)shell中用date命令获取昨天、明天或者多天前的日期

    (转载)http://blog.sina.com.cn/s/blog_3e4774e30100p0yv.html 使用date命令获取日期很方便,最近需要获取当前日期的下一天日期在linux应该如何获 ...

  7. js中State模式的解析及运用

     状态模式,在大的范畴中的定义为当一个对象的内在状态改变时允许改变其行为,这个对象看起来像是改变了其类.每种编程语言有不同的实现方式,运用的范围也多用于游戏之中. 这里我用javascript来模拟状 ...

  8. mapreduce 倒排索引的建立

    大道至简 http://blog.csdn.net/hguisu/article/details/7969757 1.map的输入 key: 文档 id   value: 文档内容 输出: key   ...

  9. UVA 11427 Expect the Expected(DP+概率)

    链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=35396 [思路] DP+概率 见白书. [代码] #include&l ...

  10. 前端开发者应当了解的 Web 缓存知识

    缓存优点 通常所说的Web缓存指的是可以自动保存常见http请求副本的http设备.对于前端开发者来说,浏览器充当了重要角色.除此外常见的还有各种各样的代理服务器也可以做缓存.当Web请求到达缓存时, ...