基於java file 檔案操作operate file of java的應用

來源:互聯網
上載者:User

java檔案操作
複製代碼 代碼如下:package com.b510;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.InputStream;
import java.io.PrintWriter;

/**
*
* @author Hongten</br>
*
* 檔案的操作
*
*
*
*/
public class OperateFiles {

/**
* @param args
*/
public static void main(String[] args) {
OperateFiles operateFiles = new OperateFiles();
//建立一個檔案夾
operateFiles.newFolder("c:/hongten");
//建立一個檔案,同時向裡面寫入內容
operateFiles.newFile("c:/hongten/Hello.txt", "hello,i'm Hongten.你好");
//刪除一個檔案
operateFiles.deleteFile("c:/hongten/Hello.txt");
//刪除一個檔案夾
operateFiles.deleteFolder("c:/hongten");
//複製檔案夾
operateFiles.copyFolder("c:/hongten", "e:/hongten");
//提取檔案的副檔名
String expandedName=operateFiles.getExpandedName("c:/hongten/Hello.txt");
System.out.println(expandedName);
//提取檔案的路徑
System.out.println(operateFiles.getFilePath("c:/hongten/Hello.txt"));
}

/**
* 獲得檔案的副檔名
* @param filePath 檔案的路徑 如:c:/hongten/Hello.txt
* @return 檔案的副檔名 如:txt
*/
public String getExpandedName(String filePath){
return filePath.substring(filePath.lastIndexOf(".")+1);
}
/**
* 獲得檔案的路徑
* @param file 檔案的路徑
* @return 檔案的路徑
*/
public String getFilePath(String file){
return file.substring(0,file.lastIndexOf("/"));
}
/**
* 建立一個目錄
*
* @param folderPath
* 建立目錄的路徑 如:c:\\newFolder
*/
public void newFolder(String folderPath) {
try {
File myFolderPath = new File(folderPath.toString());
if (!myFolderPath.exists()) {
myFolderPath.mkdir();
}
} catch (Exception e) {
System.out.println("建立目錄操作出錯");
e.printStackTrace();
}
}

/**
* 建立一個檔案
*
* @param filePath
* 建立檔案的目錄 如:c:\\hongten.java
*/
public void newFile(String filePath) {
try {
File myFilePathFile = new File(filePath.toString());
if (!myFilePathFile.exists()) {
myFilePathFile.createNewFile();
}
} catch (Exception e) {
System.out.println("新檔案建立失敗");
e.printStackTrace();
}
}

/**
* 建立一個檔案,同時向檔案中寫入內容
*
* @param filePath
* 建立檔案的目錄 如:c:\\hongten.java
* @param fileContent
* 向檔案中寫入的內容
*/
public void newFile(String filePath, String fileContent) {
try {
newFile(filePath);
FileWriter resultFile = new FileWriter(filePath);
PrintWriter myFile = new PrintWriter(resultFile);
myFile.println(fileContent);
resultFile.close();
} catch (Exception e) {
System.out.println("建立檔案操作出錯");
e.printStackTrace();
}
}

/**
* 刪除一個檔案
*
* @param filePath
* 要刪除檔案的絕對路徑 如:c:\\hongten\\Hello.txt
*/
public void deleteFile(String filePath) {
try {
File preDelFile = new File(filePath);
if (preDelFile.exists()) {
preDelFile.delete();
} else {
System.out.println(filePath + "不存在!");
}
} catch (Exception e) {
System.out.println("刪除檔案操作出錯");
e.printStackTrace();
}
}

/**
* 刪除一個檔案夾
*
* @param folderPath
* 要刪除的檔案夾的絕對路徑 如:c:\\hongten
*/
public void deleteFolder(String folderPath) {
try {
delAllFiles(folderPath);
File preDelFoder = new File(folderPath);
if (preDelFoder.exists()) {
preDelFoder.delete();
} else {
System.out.println(folderPath + "不存在!");
}
} catch (Exception e) {
System.out.println("刪除檔案操作出錯");
e.printStackTrace();
}
}

/**
* 刪除一個檔案夾下的所有檔案
*
* @param folderPath
* 要刪除的檔案夾的絕對路徑 如:c:\\hongten
*/
public void delAllFiles(String folderPath) {
File file = new File(folderPath);
if (!file.exists()) {
return;
}
if (!file.isDirectory()) {
return;
}
String[] tempList = file.list();
File temp = null;
for (int i = 0; i < tempList.length; i++) {
if (folderPath.endsWith(File.separator)) {
temp = new File(folderPath + tempList[i]);
} else {
temp = new File(folderPath + File.separator + tempList[i]);
}
if (temp.isFile()) {
temp.delete();
}
if (temp.isDirectory()) {
delAllFiles(folderPath + "/" + tempList[i]);// 先刪除檔案夾裡面的檔案
deleteFolder(folderPath + "/" + tempList[i]);// 再刪除空檔案夾
}
}
}

/**
* 單個檔案的複製
*
* @param oldPath
* 原路徑 如:c:\\Hello.java
* @param newPath
* 新路徑 如:f:\\Hello.java
*/
public void copyFile(String oldPath, String newPath) {
try {
int bytesum = 0;
int byteread = 0;
File oldfile = new File(oldPath);
if (oldfile.exists()) { // 檔案存在時
InputStream inStream = new FileInputStream(oldPath); // 讀入原檔案
FileOutputStream fs = new FileOutputStream(newPath);
byte[] buffer = new byte[1444];
// int length = 0;
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; // 位元組數 檔案大小
fs.write(buffer, 0, byteread);
}
inStream.close();
}
} catch (Exception e) {
System.out.println("複製單個檔案操作出錯");
e.printStackTrace();

}
}

/**
* 檔案夾的複製
*
* @param oldPath
* 原檔案夾路徑 如: c:\\hello
* @param newPath
* 新檔案夾路徑 如: e:\\hello
*/
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) {
System.out.println("複製整個檔案夾內容操作出錯");
e.printStackTrace();

}
}

/**
* 移動單個檔案
*
* @param oldPath
* 源檔案路徑 如:c:\\hello.java
* @param newPath
* 新檔案路徑 如:e:\\hello.java
*/
public void moveFile(String oldPath, String newPath) {
copyFile(oldPath, newPath);
deleteFile(oldPath);
}

/**
* 移動檔案夾
*
* @param oldPath
* 原檔案夾路徑 如:c:\\hongten
* @param newPath
* 新檔案夾路徑 如:e:\\hongten
*/
public void moveFolder(String oldPath, String newPath) {
copyFolder(oldPath, newPath);
deleteFolder(oldPath);
}

/**
* 獲得系統根目錄絕對路徑
*
* @return
*/
public String getPath() {
String sysPath = this.getClass().getResource("/").getPath();
// 對路徑進行修改
sysPath = sysPath.substring(1, sysPath.length() - 16);
return sysPath;
}

}

現在有時間把這些東西整理出來,給大家分享一下……

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.