java文件处理工具类
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文件处理工具类的更多相关文章
- Java 文件切割工具类
Story: 发送MongoDB 管理软件到公司邮箱,工作使用. 1.由于公司邮箱限制附件大小,大文件无法发送,故做此程序用于切割大文件成多个小文件,然后逐个发送. 2.收到小文件之后,再重新组合成原 ...
- java文件读写工具类
依赖jar:commons-io.jar 1.写文件 // by FileUtilsList<String> lines = FileUtils.readLines(file, " ...
- Java文件类型工具类
package *; import java.util.HashMap; import java.util.Map; /** * <p> * <b>FileTypeEnum2& ...
- Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类
Java 通过Xml导出Excel文件,Java Excel 导出工具类,Java导出Excel工具类 ============================== ©Copyright 蕃薯耀 20 ...
- Java 压缩文件夹工具类(包含解压)
依赖jar <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons ...
- 文件类型工具类:FileTypeUtil
个人学习,仅供参考! package com.example.administrator.filemanager.utils;import java.io.File;/** * 文件类型工具类 * * ...
- HttpTool.java(在java tool util工具类中已存在) 暂保留
HttpTool.java 该类为java源生态的http 请求工具,不依赖第三方jar包 ,即插即用. package kingtool; import java.io.BufferedReader ...
- 文件夹工具类 - FolderUtils
文件夹工具类,提供创建完整路径的方法. 源码如下:(点击下载 -FolderUtils.java .commons-io-2.4.jar ) import java.io.File; import o ...
- Java 敏感词过滤,Java 敏感词替换,Java 敏感词工具类
Java 敏感词过滤,Java 敏感词替换,Java 敏感词工具类 =========================== ©Copyright 蕃薯耀 2017年9月25日 http://www ...
随机推荐
- linux系统下,递归删除.svn文件
linux系统下,递归删除.svn文件 SVNLinux 进入要删除的目录,执行下面的命令就可以啦. find . -name "*.svn" | xargs rm -rf
- git 基础命令
1.git init git 初始化仓库 2.git add . git 添加全部文件 3.git add xxx.txt git 添加单独文件 4.git commit -m "提交的 ...
- android ADT Bundle for Mac下载地址
直接下载解压就能用 http://developer.android.com/sdk/index.html
- Microsoft HoloLens 技术解谜(下)
读者提问之“HoloLens 的深度传感器有没有可能是基于 TOF?” 先介绍下背景知识,市面上常见的有三种类型的深度传感器: 结构光,这个技术的代表产品是 Kinect 一代,它的传感器芯片用的是 ...
- Codeforces Round #205 (Div. 2) : A
题意: 要求找到最少次数的交换次数使得两组数都是偶数: 很明显答案要么是0,要么是1,或者不管怎么交换都不行(-1): 所以: #include<cstdio> #define maxn ...
- QT获得所有系统环境变量(包括Linux和MAC的信息)
系统环境变量还是挺重要的,除了QStandardPaths(感觉都是文档类型的变量,QT4使用QDesktopServices),更有QProcessEnvironment(都是真正的系统变量): Q ...
- CSS实现文字竖排 DIV CSS文字垂直竖列排版显示如何实现?
DIV CSS实现文字竖排排版显示兼容各大浏览器,让文字垂直竖列排版布局. 有时我们需要一段文字进行从上到下竖列排版,我们知道CSS样式中有一样式可以让其竖列排版,但所有浏览器不全兼容,逼不得已放弃. ...
- lua metatable和metamethod元表和元方法
Lua中提供的元表是用于帮助Lua数据变量完成某些非预定义功能的个性化行为,如两个table的相加.假设a和b都是table,通过元表可以定义如何计算表达式a+b.当Lua试图将两个table相加时, ...
- 利用ROWID 快速更新单表记录
-----对于普通表 实现: UPDATE T_PM_DEPOSIT_HIS b SET flag = SUBSTR( flag, 1, 8 )||'4'|| CASE WHEN term <= ...
- (转载)prepare函数的学习,我要学习php第二天
(转载)http://www.boyuan78.com/htm/company/2012_1030_60.html prepare函数的学习,我要学习php第二天 $mysqli = new mysq ...