org.apache.commons.io.FileUtils 檔案處理相關
阿新 • • 發佈:2019-02-18
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
/**
* 字串工具箱
*
* @author leizhimin 2008-12-15 22:40:12
*/
public final class StringToolkit {
/**
* 將一個字串的首字母改為大寫或者小寫
*
* @param srcString 源字串
* @param flag 大小寫標識,ture小寫,false大些
* @return 改寫後的新字串
*/
public static String toLowerCaseInitial(String srcString, boolean flag) {
StringBuilder sb = new StringBuilder();
if (flag) {
sb.append(Character.toLowerCase(srcString.charAt(0)));
} else {
sb.append(Character.toUpperCase(srcString.charAt(0)));
}
sb.append(srcString.substring(1));
return sb.toString();
}
/**
* 將一個字串按照句點(.)分隔,返回最後一段
*
* @param clazzName 源字串
* @return 句點(.)分隔後的最後一段字串
*/
public static String getLastName(String clazzName) {
String[] ls = clazzName.split("\\.");
return ls[ls.length - 1];
}
/**
* 格式化檔案路徑,將其中不規範的分隔轉換為標準的分隔符,並且去掉末尾的"/"符號。
*
* @param path 檔案路徑
* @return 格式化後的檔案路徑
*/
public static String formatPath(String path) {
String reg0 = "\\\\+";
String reg = "\\\\+|/+";
String temp = path.trim().replaceAll(reg0, "/");
temp = temp.replaceAll(reg, "/");
if (temp.endsWith("/")) {
temp = temp.substring(0, temp.length() - 1);
}
if (System.getProperty("file.separator").equals("\\")) {
temp= temp.replace('/','\\');
}
return temp;
}
/**
* 格式化檔案路徑,將其中不規範的分隔轉換為標準的分隔符,並且去掉末尾的"/"符號(適用於FTP遠端檔案路徑或者Web資源的相對路徑)。
*
* @param path 檔案路徑
* @return 格式化後的檔案路徑
*/
public static String formatPath4Ftp(String path) {
String reg0 = "\\\\+";
String reg = "\\\\+|/+";
String temp = path.trim().replaceAll(reg0, "/");
temp = temp.replaceAll(reg, "/");
if (temp.endsWith("/")) {
temp = temp.substring(0, temp.length() - 1);
}
return temp;
}
public static void main(String[] args) {
System.out.println(System.getProperty("file.separator"));
Properties p = System.getProperties();
System.out.println(formatPath("C:///\\xxxx\\\\\\\\\\///\\\\R5555555.txt"));
// List<String> result = series2List("asdf | sdf|siii|sapp|aaat| ", "\\|");
// System.out.println(result.size());
// for (String s : result) {
// System.out.println(s);
// }
}
/**
* 獲取檔案父路徑
*
* @param path 檔案路徑
* @return 檔案父路徑
*/
public static String getParentPath(String path) {
return new File(path).getParent();
}
/**
* 獲取相對路徑
*
* @param fullPath 全路徑
* @param rootPath 根路徑
* @return 相對根路徑的相對路徑
*/
public static String getRelativeRootPath(String fullPath, String rootPath) {
String relativeRootPath = null;
String _fullPath = formatPath(fullPath);
String _rootPath = formatPath(rootPath);
if (_fullPath.startsWith(_rootPath)) {
relativeRootPath = fullPath.substring(_rootPath.length());
} else {
throw new RuntimeException("要處理的兩個字串沒有包含關係,處理失敗!");
}
if (relativeRootPath == null) return null;
else
return formatPath(relativeRootPath);
}
/**
* 獲取當前系統換行符
*
* @return 系統換行符
*/
public static String getSystemLineSeparator() {
return System.getProperty("line.separator");
}
/**
* 將用“|”分隔的字串轉換為字串集合列表,剔除分隔後各個字串前後的空格
*
* @param series 將用“|”分隔的字串
* @return 字串集合列表
*/
public static List<String> series2List(String series) {
return series2List(series, "\\|");
}
/**
* 將用正則表示式regex分隔的字串轉換為字串集合列表,剔除分隔後各個字串前後的空格
*
* @param series 用正則表示式分隔的字串
* @param regex 分隔串聯串的正則表示式
* @return 字串集合列表
*/
private static List<String> series2List(String series, String regex) {
List<String> result = new ArrayList<String>();
if (series != null && regex != null) {
for (String s : series.split(regex)) {
if (s.trim() != null && !s.trim().equals("")) result.add(s.trim());
}
}
return result;
}
/**
* @param strList 字串集合列表
* @return 通過“|”串聯為一個字串
*/
public static String list2series(List<String> strList) {
StringBuffer series = new StringBuffer();
for (String s : strList) {
series.append(s).append("|");
}
return series.toString();
}
/**
* 將字串的首字母轉為小寫
*
* @param resStr 源字串
* @return 首字母轉為小寫後的字串
*/
public static String firstToLowerCase(String resStr) {
if (resStr == null) {
return null;
} else if ("".equals(resStr.trim())) {
return "";
} else {
StringBuffer sb = new StringBuffer();
Character c = resStr.charAt(0);
if (Character.isLetter(c)) {
if (Character.isUpperCase(c))
c = Character.toLowerCase(c);
sb.append(resStr);
sb.setCharAt(0, c);
return sb.toString();
}
}
return resStr;
}
/**
* 將字串的首字母轉為大寫
*
* @param resStr 源字串
* @return 首字母轉為大寫後的字串
*/
public static String firstToUpperCase(String resStr) {
if (resStr == null) {
return null;
} else if ("".equals(resStr.trim())) {
return "";
} else {
StringBuffer sb = new StringBuffer();
Character c = resStr.charAt(0);
if (Character.isLetter(c)) {
if (Character.isLowerCase(c))
c = Character.toUpperCase(c);
sb.append(resStr);
sb.setCharAt(0, c);
return sb.toString();
}
}
return resStr;
}
}
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
/**
* 字串工具箱
*
* @author leizhimin 2008-12-15 22:40:12
*/
public final class StringToolkit {
/**
* 將一個字串的首字母改為大寫或者小寫
*
* @param srcString 源字串
* @param flag 大小寫標識,ture小寫,false大些
* @return 改寫後的新字串
*/
public static String toLowerCaseInitial(String srcString, boolean flag) {
StringBuilder sb = new StringBuilder();
if (flag) {
sb.append(Character.toLowerCase(srcString.charAt(0)));
} else {
sb.append(Character.toUpperCase(srcString.charAt(0)));
}
sb.append(srcString.substring(1));
return sb.toString();
}
/**
* 將一個字串按照句點(.)分隔,返回最後一段
*
* @param clazzName 源字串
* @return 句點(.)分隔後的最後一段字串
*/
public static String getLastName(String clazzName) {
String[] ls = clazzName.split("\\.");
return ls[ls.length - 1];
}
/**
* 格式化檔案路徑,將其中不規範的分隔轉換為標準的分隔符,並且去掉末尾的"/"符號。
*
* @param path 檔案路徑
* @return 格式化後的檔案路徑
*/
public static String formatPath(String path) {
String reg0 = "\\\\+";
String reg = "\\\\+|/+";
String temp = path.trim().replaceAll(reg0, "/");
temp = temp.replaceAll(reg, "/");
if (temp.endsWith("/")) {
temp = temp.substring(0, temp.length() - 1);
}
if (System.getProperty("file.separator").equals("\\")) {
temp= temp.replace('/','\\');
}
return temp;
}
/**
* 格式化檔案路徑,將其中不規範的分隔轉換為標準的分隔符,並且去掉末尾的"/"符號(適用於FTP遠端檔案路徑或者Web資源的相對路徑)。
*
* @param path 檔案路徑
* @return 格式化後的檔案路徑
*/
public static String formatPath4Ftp(String path) {
String reg0 = "\\\\+";
String reg = "\\\\+|/+";
String temp = path.trim().replaceAll(reg0, "/");
temp = temp.replaceAll(reg, "/");
if (temp.endsWith("/")) {
temp = temp.substring(0, temp.length() - 1);
}
return temp;
}
public static void main(String[] args) {
System.out.println(System.getProperty("file.separator"));
Properties p = System.getProperties();
System.out.println(formatPath("C:///\\xxxx\\\\\\\\\\///\\\\R5555555.txt"));
// List<String> result = series2List("asdf | sdf|siii|sapp|aaat| ", "\\|");
// System.out.println(result.size());
// for (String s : result) {
// System.out.println(s);
// }
}
/**
* 獲取檔案父路徑
*
* @param path 檔案路徑
* @return 檔案父路徑
*/
public static String getParentPath(String path) {
return new File(path).getParent();
}
/**
* 獲取相對路徑
*
* @param fullPath 全路徑
* @param rootPath 根路徑
* @return 相對根路徑的相對路徑
*/
public static String getRelativeRootPath(String fullPath, String rootPath) {
String relativeRootPath = null;
String _fullPath = formatPath(fullPath);
String _rootPath = formatPath(rootPath);
if (_fullPath.startsWith(_rootPath)) {
relativeRootPath = fullPath.substring(_rootPath.length());
} else {
throw new RuntimeException("要處理的兩個字串沒有包含關係,處理失敗!");
}
if (relativeRootPath == null) return null;
else
return formatPath(relativeRootPath);
}
/**
* 獲取當前系統換行符
*
* @return 系統換行符
*/
public static String getSystemLineSeparator() {
return System.getProperty("line.separator");
}
/**
* 將用“|”分隔的字串轉換為字串集合列表,剔除分隔後各個字串前後的空格
*
* @param series 將用“|”分隔的字串
* @return 字串集合列表
*/
public static List<String> series2List(String series) {
return series2List(series, "\\|");
}
/**
* 將用正則表示式regex分隔的字串轉換為字串集合列表,剔除分隔後各個字串前後的空格
*
* @param series 用正則表示式分隔的字串
* @param regex 分隔串聯串的正則表示式
* @return 字串集合列表
*/
private static List<String> series2List(String series, String regex) {
List<String> result = new ArrayList<String>();
if (series != null && regex != null) {
for (String s : series.split(regex)) {
if (s.trim() != null && !s.trim().equals("")) result.add(s.trim());
}
}
return result;
}
/**
* @param strList 字串集合列表
* @return 通過“|”串聯為一個字串
*/
public static String list2series(List<String> strList) {
StringBuffer series = new StringBuffer();
for (String s : strList) {
series.append(s).append("|");
}
return series.toString();
}
/**
* 將字串的首字母轉為小寫
*
* @param resStr 源字串
* @return 首字母轉為小寫後的字串
*/
public static String firstToLowerCase(String resStr) {
if (resStr == null) {
return null;
} else if ("".equals(resStr.trim())) {
return "";
} else {
StringBuffer sb = new StringBuffer();
Character c = resStr.charAt(0);
if (Character.isLetter(c)) {
if (Character.isUpperCase(c))
c = Character.toLowerCase(c);
sb.append(resStr);
sb.setCharAt(0, c);
return sb.toString();
}
}
return resStr;
}
/**
* 將字串的首字母轉為大寫
*
* @param resStr 源字串
* @return 首字母轉為大寫後的字串
*/
public static String firstToUpperCase(String resStr) {
if (resStr == null) {
return null;
} else if ("".equals(resStr.trim())) {
return "";
} else {
StringBuffer sb = new StringBuffer();
Character c = resStr.charAt(0);
if (Character.isLetter(c)) {
if (Character.isLowerCase(c))
c = Character.toUpperCase(c);
sb.append(resStr);
sb.setCharAt(0, c);
return sb.toString();
}
}
return resStr;
}
}