- 浏览: 33969 次
- 性别:
- 来自: 北京
最新评论
package com.xiaowei.tools.util;
/**
* 文件操作类
* @author xiaowei
* @date 2009-05-04 12:17pm
*/
import java.io.BufferedReader;
import java.io.BufferedWriter;
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.PrintWriter;
import java.util.StringTokenizer;
public class FileOperate {
private String message;
public FileOperate() {
}
/**
* 读取文本文件内容
*
* @param filePathAndName
* 带有完整绝对路径的文件名
* @param encoding
* 文本文件打开的编码方式
* @return 返回文本文件的内容
*/
public String readTxt(String filePathAndName, String encoding) {
encoding = encoding.trim();
StringBuffer str = new StringBuffer("");
String st = "";
try {
FileInputStream fs = new FileInputStream(filePathAndName);
InputStreamReader isr;
if (encoding.equals("")) {
isr = new InputStreamReader(fs);
} else {
isr = new InputStreamReader(fs, encoding);
}
BufferedReader br = new BufferedReader(isr);
try {
String data = "";
while ((data = br.readLine()) != null) {
str.append(data + " ");
}
} catch (Exception e) {
str.append(e.toString());
}
st = str.toString();
} catch (IOException es) {
st = "";
}
return st;
}
/**
* 完全读取指定目录下的文件
*
* @param filePath
* @param fileName
*/
public void readAllFile(String filePath, String fileName) {
try {
FileReader fr = new FileReader(filePath + fileName);
int count = fr.read();
while (count != -1) {
System.out.print((char) count);
count = fr.read();
if (count == 13) {
fr.skip(1);
}
}
fr.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 按行读取指定文件,也可计算文件行数
*
* @param filePath
* @param fileName
*/
public void readLineFile(String filePath, String fileName) {
try {
FileReader fr = new FileReader(filePath + fileName);
BufferedReader br = new BufferedReader(fr);
String line = br.readLine();
int i = 0;
while (line != null) {
System.out.println(line);
line = br.readLine();
i++;
}
System.out.println("该文件行数:" + i);
br.close();
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 新建目录
*
* @param folderPath
* 目录
* @return 返回目录创建后的路径
*/
public String createFolder(String folderPath) {
String txt = folderPath;
try {
File myFilePath = new File(txt);
txt = folderPath;
if (!myFilePath.exists()) {
myFilePath.mkdir();
}
} catch (Exception e) {
message = "创建目录操作出错";
}
return txt;
}
/**
* 多级目录创建 ????
*
* @param folderPath
* 准备要在本级目录下创建新目录的目录路径 例如 c:myf
* @param paths
* 无限级目录参数,各级目录以单数线区分 例如 a|b|c
* @return 返回创建文件后的路径 例如 c:myfa c
*/
public String createFolders(String folderPath, String paths) {
String txts = folderPath;
try {
String txt;
txts = folderPath;
StringTokenizer st = new StringTokenizer(paths, "|");
for (int i = 0; st.hasMoreTokens(); i++) {
txt = st.nextToken().trim();
if (txts.lastIndexOf("/") != -1) {
txts = createFolder(txts + txt);
} else {
txts = createFolder(txts + txt + "/");
}
}
} catch (Exception e) {
message = "创建目录操作出错!";
}
return txts;
}
/**
* 新建文件
*
* @param filePathAndName
* 文本文件完整绝对路径及文件名
* @param fileContent
* 文本文件内容
* @return
*/
public void createFile(String filePathAndName, String fileContent) {
try {
String filePath = filePathAndName;
filePath = filePath.toString();
File myFilePath = new File(filePath);
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
FileWriter resultFile = new FileWriter(myFilePath);
PrintWriter myFile = new PrintWriter(resultFile);
String strContent = fileContent;
myFile.println(strContent);
myFile.close();
resultFile.close();
} catch (Exception e) {
message = "创建文件操作出错";
}
}
/**
* 有编码方式的文件创建
*
* @param filePathAndName
* 文本文件完整绝对路径及文件名
* @param fileContent
* 文本文件内容
* @param encoding
* 编码方式 例如 GBK 或者 UTF-8
* @return
*/
public void createFile(String filePathAndName, String fileContent,
String encoding) {
try {
String filePath = filePathAndName;
filePath = filePath.toString();
File myFilePath = new File(filePath);
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
PrintWriter myFile = new PrintWriter(myFilePath, encoding);
String strContent = fileContent;
myFile.println(strContent);
myFile.close();
} catch (Exception e) {
message = "创建文件操作出错";
}
}
/**
* 删除文件
*
* @param filePathAndName
* 文本文件完整绝对路径及文件名
* @return Boolean 成功删除返回true遭遇异常返回false
*/
public boolean delFile(String filePathAndName) {
boolean bea = false;
try {
String filePath = filePathAndName;
File myDelFile = new File(filePath);
if (myDelFile.exists()) {
myDelFile.delete();
bea = true;
} else {
bea = false;
message = (filePathAndName + "删除文件操作出错");
}
} catch (Exception e) {
message = e.toString();
}
return bea;
}
/**
* 删除文件夹
*
* @param folderPath
* 文件夹完整绝对路径
* @return
*/
public void delFolder(String folderPath) {
try {
delAllFile(folderPath); // 删除完里面所有内容
String filePath = folderPath;
filePath = filePath.toString();
java.io.File myFilePath = new java.io.File(filePath);
myFilePath.delete(); // 删除空文件夹
} catch (Exception e) {
message = ("删除文件夹操作出错");
}
}
/**
* 删除指定文件夹下所有文件
*
* @param path
* 文件夹完整绝对路径
* @return
* @return
*/
public boolean delAllFile(String path) {
boolean bea = false;
File file = new File(path);
if (!file.exists()) {
return bea;
}
if (!file.isDirectory()) {
return bea;
}
String[] tempList = file.list();
File temp = null;
for (int i = 0; i < tempList.length; i++) {
if (path.endsWith(File.separator)) {
temp = new File(path + tempList[i]);
} else {
temp = new File(path + File.separator + tempList[i]);
}
if (temp.isFile()) {
temp.delete();
}
if (temp.isDirectory()) {
delAllFile(path + "/" + tempList[i]);// 先删除文件夹里面的文件
delFolder(path + "/" + tempList[i]);// 再删除空文件夹
bea = true;
}
}
return bea;
}
/**
* 复制单个文件
*
* @param oldPathFile
* 准备复制的文件源
* @param newPathFile
* 拷贝到新绝对路径带文件名
* @return
*/
public void copyFile(String oldPathFile, String newPathFile) {
try {
int bytesum = 0;
int byteread = 0;
File oldfile = new File(oldPathFile);
if (oldfile.exists()) { // 文件存在时
InputStream inStream = new FileInputStream(oldPathFile); // 读入原文件
FileOutputStream fs = new FileOutputStream(newPathFile);
byte[] buffer = new byte[1444];
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; // 字节数 文件大小
System.out.println(bytesum);
fs.write(buffer, 0, byteread);
}
inStream.close();
}
} catch (Exception e) {
message = ("复制单个文件操作出错");
}
}
/**
* 复制整个文件夹的内容
*
* @param oldPath
* 准备拷贝的目录
* @param newPath
* 指定绝对路径的新目录
* @return
*/
public void copyFolder(String oldPath, String newPath) {
try {
new File(newPath).mkdirs(); // 如果文件夹不存在 则建立新文件夹
File a = new File(oldPath);
String[] file = a.list();
File temp = null;
for (int i = 0; i < file.length; i++) {
if (oldPath.endsWith(File.separator)) {
temp = new File(oldPath + file[i]);
} else {
temp = new File(oldPath + File.separator + file[i]);
}
if (temp.isFile()) {
FileInputStream input = new FileInputStream(temp);
FileOutputStream output = new FileOutputStream(newPath
+ "/" + (temp.getName()).toString());
byte[] b = new byte[1024 * 5];
int len;
while ((len = input.read(b)) != -1) {
output.write(b, 0, len);
}
output.flush();
output.close();
input.close();
}
if (temp.isDirectory()) {// 如果是子文件夹
copyFolder(oldPath + "/" + file[i], newPath + "/" + file[i]);
}
}
} catch (Exception e) {
message = "复制整个文件夹内容操作出错";
}
}
/**
* 移动文件
*
* @param oldPath
* @param newPath
* @return
*/
public void moveFile(String oldPath, String newPath) {
copyFile(oldPath, newPath);
delFile(oldPath);
}
/**
* 移动目录
*
* @param oldPath
* @param newPath
* @return
*/
public void moveFolder(String oldPath, String newPath) {
copyFolder(oldPath, newPath);
delFolder(oldPath);
}
public String getMessage() {
return this.message;
}
/**
* 向 指定文件输入数据,该文件存在时重洗,不存在时创建。
*
* @param filename
* @param fin
*/
public void fwriter(String filename, String fin) {
try {
PrintWriter out = new PrintWriter(new BufferedWriter(
new FileWriter(filename)), true);
out.println(fin);
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// up
public void writeFile(String filePath, String fileName, String args) {
try {
FileWriter fw = new FileWriter(filePath + fileName);
fw.write(args);
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 以数组形式向文件中输入数据
*
* @param filePath
* @param fileName
* @param args
*/
public void writeFile(String filePath, String fileName, String[] args) {
try {
FileWriter fw = new FileWriter(filePath + fileName);
PrintWriter out = new PrintWriter(fw);
for (int i = 0; i < args.length; i++) {
out.write(args[i]);
out.println();
out.flush();
}
fw.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 创建、删除文件,有则删除,无则创建
*
* @param filePath
* @param fileName
* @return
*/
public boolean createAndDeleteFile(String filePath, String fileName) {
boolean result = false;
File file = new File(filePath, fileName);
if (file.exists()) {
file.delete();
result = true;
System.out.println("删除文件成功");
} else {
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
result = true;
System.out.println("创建文件成功");
}
return result;
}
/**
* 在指定绝对路径的目录下创建目录
*
* @param filePath
* @param folderName
*/
public synchronized void createFolder(String filePath, String folderName) {
try {
String[] st = folderName.split("/");
for (int i = 0; i < st.length; i++) {
filePath = filePath + st[i] + "/";
File file = new File(filePath);
File parentFile = new File(file.getParent());
if (!parentFile.exists()) {
parentFile.mkdir();
}
if (!file.exists()) {
file.mkdir();
}
}
} catch (Exception ex) {
System.out.println("CreateAndDeleteFolder is error:" + ex);
}
}
/**
* 创建、删除目录
*
* @param folderName
* @param filePath
* @return
*/
public boolean createAndDeleteFolder(String folderName, String filePath) {
boolean result = false;
try {
File file = new File(filePath + folderName);
if (file.exists()) {
file.delete();
System.out.println("目录已经存在,已删除!");
result = true;
} else {
file.mkdir();
System.out.println("目录不存在,已经建立!");
result = true;
}
} catch (Exception ex) {
result = false;
System.out.println("CreateAndDeleteFolder is error:" + ex);
}
return result;
}
/**
* 指定目录下的文件。
*
* @param filePath
*/
public void readFolderByFile(String filePath) {
File file = new File(filePath);
File[] tempFile = file.listFiles();
for (int i = 0; i < tempFile.length; i++) {
if (tempFile[i].isFile()) {
System.out.println("File : " + tempFile[i].getName());
}
if (tempFile[i].isDirectory()) {
System.out.println("Directory : " + tempFile[i].getName());
}
}
}
/**
* 判断文件是否为空
*
* @param args
*/
public boolean fileIsNull(String filePath, String fileName) {
boolean result = false;
try {
FileReader fr = new FileReader(filePath + fileName);
if (fr.read() == -1) {
result = true;
System.out.println(fileName + "该文件中没有数据");
} else {
System.out.println(fileName + "该文件中有数据");
}
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
}
/**
* 文件操作类
* @author xiaowei
* @date 2009-05-04 12:17pm
*/
import java.io.BufferedReader;
import java.io.BufferedWriter;
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.PrintWriter;
import java.util.StringTokenizer;
public class FileOperate {
private String message;
public FileOperate() {
}
/**
* 读取文本文件内容
*
* @param filePathAndName
* 带有完整绝对路径的文件名
* @param encoding
* 文本文件打开的编码方式
* @return 返回文本文件的内容
*/
public String readTxt(String filePathAndName, String encoding) {
encoding = encoding.trim();
StringBuffer str = new StringBuffer("");
String st = "";
try {
FileInputStream fs = new FileInputStream(filePathAndName);
InputStreamReader isr;
if (encoding.equals("")) {
isr = new InputStreamReader(fs);
} else {
isr = new InputStreamReader(fs, encoding);
}
BufferedReader br = new BufferedReader(isr);
try {
String data = "";
while ((data = br.readLine()) != null) {
str.append(data + " ");
}
} catch (Exception e) {
str.append(e.toString());
}
st = str.toString();
} catch (IOException es) {
st = "";
}
return st;
}
/**
* 完全读取指定目录下的文件
*
* @param filePath
* @param fileName
*/
public void readAllFile(String filePath, String fileName) {
try {
FileReader fr = new FileReader(filePath + fileName);
int count = fr.read();
while (count != -1) {
System.out.print((char) count);
count = fr.read();
if (count == 13) {
fr.skip(1);
}
}
fr.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 按行读取指定文件,也可计算文件行数
*
* @param filePath
* @param fileName
*/
public void readLineFile(String filePath, String fileName) {
try {
FileReader fr = new FileReader(filePath + fileName);
BufferedReader br = new BufferedReader(fr);
String line = br.readLine();
int i = 0;
while (line != null) {
System.out.println(line);
line = br.readLine();
i++;
}
System.out.println("该文件行数:" + i);
br.close();
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 新建目录
*
* @param folderPath
* 目录
* @return 返回目录创建后的路径
*/
public String createFolder(String folderPath) {
String txt = folderPath;
try {
File myFilePath = new File(txt);
txt = folderPath;
if (!myFilePath.exists()) {
myFilePath.mkdir();
}
} catch (Exception e) {
message = "创建目录操作出错";
}
return txt;
}
/**
* 多级目录创建 ????
*
* @param folderPath
* 准备要在本级目录下创建新目录的目录路径 例如 c:myf
* @param paths
* 无限级目录参数,各级目录以单数线区分 例如 a|b|c
* @return 返回创建文件后的路径 例如 c:myfa c
*/
public String createFolders(String folderPath, String paths) {
String txts = folderPath;
try {
String txt;
txts = folderPath;
StringTokenizer st = new StringTokenizer(paths, "|");
for (int i = 0; st.hasMoreTokens(); i++) {
txt = st.nextToken().trim();
if (txts.lastIndexOf("/") != -1) {
txts = createFolder(txts + txt);
} else {
txts = createFolder(txts + txt + "/");
}
}
} catch (Exception e) {
message = "创建目录操作出错!";
}
return txts;
}
/**
* 新建文件
*
* @param filePathAndName
* 文本文件完整绝对路径及文件名
* @param fileContent
* 文本文件内容
* @return
*/
public void createFile(String filePathAndName, String fileContent) {
try {
String filePath = filePathAndName;
filePath = filePath.toString();
File myFilePath = new File(filePath);
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
FileWriter resultFile = new FileWriter(myFilePath);
PrintWriter myFile = new PrintWriter(resultFile);
String strContent = fileContent;
myFile.println(strContent);
myFile.close();
resultFile.close();
} catch (Exception e) {
message = "创建文件操作出错";
}
}
/**
* 有编码方式的文件创建
*
* @param filePathAndName
* 文本文件完整绝对路径及文件名
* @param fileContent
* 文本文件内容
* @param encoding
* 编码方式 例如 GBK 或者 UTF-8
* @return
*/
public void createFile(String filePathAndName, String fileContent,
String encoding) {
try {
String filePath = filePathAndName;
filePath = filePath.toString();
File myFilePath = new File(filePath);
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
PrintWriter myFile = new PrintWriter(myFilePath, encoding);
String strContent = fileContent;
myFile.println(strContent);
myFile.close();
} catch (Exception e) {
message = "创建文件操作出错";
}
}
/**
* 删除文件
*
* @param filePathAndName
* 文本文件完整绝对路径及文件名
* @return Boolean 成功删除返回true遭遇异常返回false
*/
public boolean delFile(String filePathAndName) {
boolean bea = false;
try {
String filePath = filePathAndName;
File myDelFile = new File(filePath);
if (myDelFile.exists()) {
myDelFile.delete();
bea = true;
} else {
bea = false;
message = (filePathAndName + "删除文件操作出错");
}
} catch (Exception e) {
message = e.toString();
}
return bea;
}
/**
* 删除文件夹
*
* @param folderPath
* 文件夹完整绝对路径
* @return
*/
public void delFolder(String folderPath) {
try {
delAllFile(folderPath); // 删除完里面所有内容
String filePath = folderPath;
filePath = filePath.toString();
java.io.File myFilePath = new java.io.File(filePath);
myFilePath.delete(); // 删除空文件夹
} catch (Exception e) {
message = ("删除文件夹操作出错");
}
}
/**
* 删除指定文件夹下所有文件
*
* @param path
* 文件夹完整绝对路径
* @return
* @return
*/
public boolean delAllFile(String path) {
boolean bea = false;
File file = new File(path);
if (!file.exists()) {
return bea;
}
if (!file.isDirectory()) {
return bea;
}
String[] tempList = file.list();
File temp = null;
for (int i = 0; i < tempList.length; i++) {
if (path.endsWith(File.separator)) {
temp = new File(path + tempList[i]);
} else {
temp = new File(path + File.separator + tempList[i]);
}
if (temp.isFile()) {
temp.delete();
}
if (temp.isDirectory()) {
delAllFile(path + "/" + tempList[i]);// 先删除文件夹里面的文件
delFolder(path + "/" + tempList[i]);// 再删除空文件夹
bea = true;
}
}
return bea;
}
/**
* 复制单个文件
*
* @param oldPathFile
* 准备复制的文件源
* @param newPathFile
* 拷贝到新绝对路径带文件名
* @return
*/
public void copyFile(String oldPathFile, String newPathFile) {
try {
int bytesum = 0;
int byteread = 0;
File oldfile = new File(oldPathFile);
if (oldfile.exists()) { // 文件存在时
InputStream inStream = new FileInputStream(oldPathFile); // 读入原文件
FileOutputStream fs = new FileOutputStream(newPathFile);
byte[] buffer = new byte[1444];
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; // 字节数 文件大小
System.out.println(bytesum);
fs.write(buffer, 0, byteread);
}
inStream.close();
}
} catch (Exception e) {
message = ("复制单个文件操作出错");
}
}
/**
* 复制整个文件夹的内容
*
* @param oldPath
* 准备拷贝的目录
* @param newPath
* 指定绝对路径的新目录
* @return
*/
public void copyFolder(String oldPath, String newPath) {
try {
new File(newPath).mkdirs(); // 如果文件夹不存在 则建立新文件夹
File a = new File(oldPath);
String[] file = a.list();
File temp = null;
for (int i = 0; i < file.length; i++) {
if (oldPath.endsWith(File.separator)) {
temp = new File(oldPath + file[i]);
} else {
temp = new File(oldPath + File.separator + file[i]);
}
if (temp.isFile()) {
FileInputStream input = new FileInputStream(temp);
FileOutputStream output = new FileOutputStream(newPath
+ "/" + (temp.getName()).toString());
byte[] b = new byte[1024 * 5];
int len;
while ((len = input.read(b)) != -1) {
output.write(b, 0, len);
}
output.flush();
output.close();
input.close();
}
if (temp.isDirectory()) {// 如果是子文件夹
copyFolder(oldPath + "/" + file[i], newPath + "/" + file[i]);
}
}
} catch (Exception e) {
message = "复制整个文件夹内容操作出错";
}
}
/**
* 移动文件
*
* @param oldPath
* @param newPath
* @return
*/
public void moveFile(String oldPath, String newPath) {
copyFile(oldPath, newPath);
delFile(oldPath);
}
/**
* 移动目录
*
* @param oldPath
* @param newPath
* @return
*/
public void moveFolder(String oldPath, String newPath) {
copyFolder(oldPath, newPath);
delFolder(oldPath);
}
public String getMessage() {
return this.message;
}
/**
* 向 指定文件输入数据,该文件存在时重洗,不存在时创建。
*
* @param filename
* @param fin
*/
public void fwriter(String filename, String fin) {
try {
PrintWriter out = new PrintWriter(new BufferedWriter(
new FileWriter(filename)), true);
out.println(fin);
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// up
public void writeFile(String filePath, String fileName, String args) {
try {
FileWriter fw = new FileWriter(filePath + fileName);
fw.write(args);
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 以数组形式向文件中输入数据
*
* @param filePath
* @param fileName
* @param args
*/
public void writeFile(String filePath, String fileName, String[] args) {
try {
FileWriter fw = new FileWriter(filePath + fileName);
PrintWriter out = new PrintWriter(fw);
for (int i = 0; i < args.length; i++) {
out.write(args[i]);
out.println();
out.flush();
}
fw.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 创建、删除文件,有则删除,无则创建
*
* @param filePath
* @param fileName
* @return
*/
public boolean createAndDeleteFile(String filePath, String fileName) {
boolean result = false;
File file = new File(filePath, fileName);
if (file.exists()) {
file.delete();
result = true;
System.out.println("删除文件成功");
} else {
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
result = true;
System.out.println("创建文件成功");
}
return result;
}
/**
* 在指定绝对路径的目录下创建目录
*
* @param filePath
* @param folderName
*/
public synchronized void createFolder(String filePath, String folderName) {
try {
String[] st = folderName.split("/");
for (int i = 0; i < st.length; i++) {
filePath = filePath + st[i] + "/";
File file = new File(filePath);
File parentFile = new File(file.getParent());
if (!parentFile.exists()) {
parentFile.mkdir();
}
if (!file.exists()) {
file.mkdir();
}
}
} catch (Exception ex) {
System.out.println("CreateAndDeleteFolder is error:" + ex);
}
}
/**
* 创建、删除目录
*
* @param folderName
* @param filePath
* @return
*/
public boolean createAndDeleteFolder(String folderName, String filePath) {
boolean result = false;
try {
File file = new File(filePath + folderName);
if (file.exists()) {
file.delete();
System.out.println("目录已经存在,已删除!");
result = true;
} else {
file.mkdir();
System.out.println("目录不存在,已经建立!");
result = true;
}
} catch (Exception ex) {
result = false;
System.out.println("CreateAndDeleteFolder is error:" + ex);
}
return result;
}
/**
* 指定目录下的文件。
*
* @param filePath
*/
public void readFolderByFile(String filePath) {
File file = new File(filePath);
File[] tempFile = file.listFiles();
for (int i = 0; i < tempFile.length; i++) {
if (tempFile[i].isFile()) {
System.out.println("File : " + tempFile[i].getName());
}
if (tempFile[i].isDirectory()) {
System.out.println("Directory : " + tempFile[i].getName());
}
}
}
/**
* 判断文件是否为空
*
* @param args
*/
public boolean fileIsNull(String filePath, String fileName) {
boolean result = false;
try {
FileReader fr = new FileReader(filePath + fileName);
if (fr.read() == -1) {
result = true;
System.out.println(fileName + "该文件中没有数据");
} else {
System.out.println(fileName + "该文件中有数据");
}
fr.close();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
}
发表评论
-
日期区间
2013-12-03 11:58 612/** * 算日期的 * @param typ ... -
java日期完整验证
2011-12-21 11:57 724//日期格式异常 String reg = "(( ... -
eclips自动提示特别卡解决方案
2011-06-24 11:16 2549—————————— 状况1: —————————— 学 ... -
链接(A标签)的onclick事件触发表单提交操作后不跳转页面的问题
2010-08-20 11:11 1770<a href="javascript:voi ... -
详解jsp隐式对象
2009-06-22 13:12 671使用隐式对象注意: 1.简化了JSP 页面开发, 2.隐式对象 ... -
利用smartUpload上传下载文件
2009-06-22 12:57 2632【上传】 前台: <form action=" ...
相关推荐
总结,Java中的文件读写操作涉及到多个类和接口,理解并熟练运用它们是每个Java开发者必备的技能。通过上述介绍和示例,你应该对Java的文件操作有了基本的认识。实践中,你可以根据具体需求选择合适的方法和类,实现...
- 使用 `java.io.File` 类来创建并操作文件或目录对象。 - 如果该目录不存在,则通过调用 `mkdir()` 方法来创建新的目录。 #### 1.2 创建文件 ```java public static void newFile(String filePathAndName, String...
### Java操作文件通用方法集合详解 在Java编程中,对文件进行操作是常见的需求,包括读取、写入、创建、删除以及获取文件属性等。本文将深入解析一个名为`FileUtils`的类,该类封装了一系列用于文件操作的通用方法...
下面是关于Java操作Excel文件的知识点总结: 一、读取Excel文件内容 在Java中,读取Excel文件内容可以使用jxl.jar这个开源的库。首先需要下载jxl.jar文件,并将其添加到项目的classpath中。然后,使用Workbook....
总结来说,`java.io.File`类是Java中处理文件和目录的核心工具,配合自定义的`FileUtil`类,可以方便地进行各种文件操作,包括创建、删除、读取、写入等。熟练掌握`File`类和`FileUtil`类的使用,将使你在Java开发中...
- **转换文件类型**:通过类型转换,可以进一步操作文件,如将其转换为`CommonsMultipartFile`或`DiskFileItem`等特定类型的对象。 - **文件路径定位**:`getStoreLocation()`方法可以获取文件的存储位置。 ### 4. ...
反向操作是将Java对象转换为XML。使用Marshaller,你可以将Java对象写入XML字符串或文件: ```java import javax.xml.bind.JAXBContext; import javax.xml.bind.Marshaller; public class Main { public static ...
总结来说,用JAVA解析DBC文件涉及的关键技术包括文件I/O操作、字符串处理、数据类型转换以及对象建模。在处理过程中需关注数据的大小端问题,以确保解析的正确性。同时,解析后的数据可以用于多种汽车相关的软件开发...
`File`类是文件和目录路径名的抽象表示,它提供了一些静态方法来操作文件和目录。例如: 1. `new File(String path)`用于创建一个表示指定路径的`File`对象。 2. `exists()`检查文件或目录是否存在。 3. `...
Java解析JSON文件是Java开发中常见的一项任务,特别是在与Web...无论选择哪种方式,都需要确保正确地映射JSON结构到Java对象,以便有效地处理和操作数据。在实际项目中,还要考虑性能、内存消耗以及API的复杂性等因素。
Java处理Excel文件主要涉及到的是对XLS或XLSX文件的操作,这在Java中通常使用Apache POI库来实现。Apache POI是一个流行的API,它允许程序员创建、修改和显示MS Office格式的文件,包括Excel。 在Java中,对Excel...
2. 创建文件对象:使用`File`类创建源文件和目标文件的对象。 3. 打开文件流:使用`FileInputStream`和`FileOutputStream`类来打开源文件和目标文件的流。 4. 读取源文件:使用`read()`方法从源文件中读取数据,并将...
### Java 二进制文件的读写操作 在Java中,进行二进制文件的读写操作是非常常见的需求,尤其是在处理非文本类型的文件(如图片、音频或视频等)时。本文将详细介绍如何使用`FileInputStream`和`FileOutputStream`类...
总结来说,Java中的文件操作主要依赖于`java.io`包,通过`File`、`FileReader/Writer`、`BufferedReader/Writer`等类完成。对于简单的数据文件,我们可以通过读写文件并解析内容进行查询和更新。在实际开发中,根据...
在Java编程语言中,操作文件是一项非常常见的任务。本文将详细介绍如何使用Java程序删除本地文件。这涉及到对Java标准库中的`java.io.File`类的理解与应用。 ### 一、理解`java.io.File` `java.io.File`是Java中...
总结来说,Java操作XML文件涉及多种API和库,如DOM、SAX、StAX以及第三方库JDOM、DOM4J等。理解这些工具的工作原理和使用方法是Java开发中的重要技能,压缩包中的项目和jar包提供了一个实际操作的环境,有助于加深...
总结一下,Java中修改文件后缀涉及的关键点有: 1. 使用`java.io.File`类创建`File`对象。 2. 使用字符串操作方法(如`substring()`和`lastIndexOf('.')`)分离文件名和后缀。 3. 创建带有新后缀的新`File`对象。 4....
本文详细介绍了 Java 中文件保存功能的实现过程,包括获取文件的后缀名,使用 JFileChooser 实现文件保存功能和文件写入操作。通过本文的学习,可以帮助读者更好地理解 Java 中文件保存功能的实现原理和方法。
在Java编程语言中,流(Stream)和文件操作是核心概念,它们对于处理输入和输出数据至关重要。在本文中,我们将深入探讨Java流和文件处理的一些关键知识点。 首先,流是Java中的一个抽象概念,它代表了数据的有序...