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. ASP.NET MVC 中使用JavaScriptResult

    在浏览器地址栏输入地址,在页面上想通过脚本弹出一个框,看到Controller下有个JavaScript方法,返回的类型是JavaScriptResult,于是想用这个方法弹出框, public Ac ...

  2. SSL交互和握手过程

    SSL消息按如下顺序发送:  1.Client Hello  客户发送服务器信息,包括它所支持的密码组.密码组中有密码算法和钥匙大小: 2.Server Hello  服务器选择客户和服务器都支持的密 ...

  3. bzoj 1853: [Scoi2010]幸运数字 容斥

    1853: [Scoi2010]幸运数字 Time Limit: 2 Sec  Memory Limit: 64 MBSubmit: 1170  Solved: 406[Submit][Status] ...

  4. German Collegiate Programming Contest 2013:E

    数值计算: 这种积分的计算方法很好,学习一下! 代码: #include <iostream> #include <cmath> using namespace std; ; ...

  5. LA 3882

    动态规划: 白书上的题,看了好久看不懂刘汝佳的解法: 在网上无意中看到了大神的思路,比较好理解,膜拜! 他的思路是这样的: 设d[i]是n个数按顺时针方向分别从0开始编号,第一次删除0,以后每k个数删 ...

  6. bower的权限问题

    装bootstrap的时候,先用sudo指令装了bower,但是一打 bower isntall bootstrap 就报错: Error: EACCES, permission denied '/U ...

  7. Spring MVC 解读——<context:component-scan/>

    转自:http://my.oschina.net/HeliosFly/blog/203149 作者:GoodLoser. Spring MVC 解读---<context:component-s ...

  8. Haskell 输入和输出

    我们已经说明了 Haskell 是一个纯粹函数式语言.虽说在命令式语言中我们习惯给电脑执行一连串指令,在函数式语言中我们是用定义东西的方式进行.在 Haskell 中,一个函数不能改变状态,像是改变一 ...

  9. 【HDOJ】1422 重温世界杯

    简单题. #include <stdio.h> #define MAXN 100005 int wi[MAXN], li[MAXN]; ]; int main() { int n, tot ...

  10. Image Builder, 快速固件生成器

    Image Builder, 快速固件生成器, 用此创建固件可以省去重新编译的麻烦,大大缩短编译时间. 利用 Imagebuilder 可以生成自己所需要的固件, 告别和别人伸手乞讨固件的磨练 1. ...