📄 stringutils.java
字号:
while ((delPos = str.indexOf(delimiter, pos)) != -1) {
result.add(str.substring(pos, delPos));
pos = delPos + delimiter.length();
}
if (str.length() > 0 && pos <= str.length()) {
// Add rest of String, but not in case of empty input.
result.add(str.substring(pos));
}
return (String[]) result.toArray(new String[result.size()]);
}
/**
* Convert a CSV list into an array of Strings.
* @param str CSV list
* @return an array of Strings, or the empty array if s is null
*/
public static String[] commaDelimitedListToStringArray(String str) {
return delimitedListToStringArray(str, ",");
}
/**
* Convenience method to convert a CSV string list to a set.
* Note that this will suppress duplicates.
* @param str CSV String
* @return a Set of String entries in the list
*/
public static Set commaDelimitedListToSet(String str) {
Set set = new TreeSet();
String[] tokens = commaDelimitedListToStringArray(str);
for (int i = 0; i < tokens.length; i++) {
set.add(tokens[i]);
}
return set;
}
/**
* Convenience method to return a String array as a delimited (e.g. CSV)
* String. E.g. useful for toString() implementations.
* @param arr array to display. Elements may be of any type (toString
* will be called on each element).
* @param delim delimiter to use (probably a ,)
*/
public static String arrayToDelimitedString(Object[] arr, String delim) {
if (arr == null) {
return "null";
}
else {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < arr.length; i++) {
if (i > 0) {
sb.append(delim);
}
sb.append(arr[i]);
}
return sb.toString();
}
}
/**
* Convenience method to return a Collection as a delimited (e.g. CSV)
* String. E.g. useful for toString() implementations.
* @param c Collection to display
* @param delim delimiter to use (probably a ",")
* @param prefix string to start each element with
* @param suffix string to end each element with
*/
public static String collectionToDelimitedString(
Collection c, String delim, String prefix, String suffix) {
if (c == null) {
return "null";
}
StringBuffer sb = new StringBuffer();
Iterator it = c.iterator();
int i = 0;
while (it.hasNext()) {
if (i++ > 0) {
sb.append(delim);
}
sb.append(prefix + it.next() + suffix);
}
return sb.toString();
}
/**
* Convenience method to return a Collection as a delimited (e.g. CSV)
* String. E.g. useful for toString() implementations.
* @param coll Collection to display
* @param delim delimiter to use (probably a ",")
*/
public static String collectionToDelimitedString(Collection coll, String delim) {
return collectionToDelimitedString(coll, delim, "", "");
}
/**
* Convenience method to return a String array as a CSV String.
* E.g. useful for toString() implementations.
* @param arr array to display. Elements may be of any type (toString
* will be called on each element).
*/
public static String arrayToCommaDelimitedString(Object[] arr) {
return arrayToDelimitedString(arr, ",");
}
/**
* Convenience method to return a Collection as a CSV String.
* E.g. useful for toString() implementations.
* @param coll Collection to display
*/
public static String collectionToCommaDelimitedString(Collection coll) {
return collectionToDelimitedString(coll, ",");
}
/**
* Append the given String to the given String array, returning a new array
* consisting of the input array contents plus the given String.
* @param arr the array to append to
* @param str the String to append
* @return the new array
*/
public static String[] addStringToArray(String[] arr, String str) {
String[] newArr = new String[arr.length + 1];
System.arraycopy(arr, 0, newArr, 0, arr.length);
newArr[arr.length] = str;
return newArr;
}
/**
* Turn given source String array into sorted array.
* @param source the source array
* @return the sorted array (never null)
*/
public static String[] sortStringArray(String[] source) {
if (source == null) {
return new String[0];
}
Arrays.sort(source);
return source;
}
/**
* Unqualify a string qualified by a '.' dot character. For example,
* "this.name.is.qualified", returns "qualified".
* @param qualifiedName the qualified name
*/
public static String unqualify(String qualifiedName) {
return unqualify(qualifiedName, '.');
}
/**
* Unqualify a string qualified by a separator character. For example,
* "this:name:is:qualified" returns "qualified" if using a ':' separator.
* @param qualifiedName the qualified name
* @param separator the separator
*/
public static String unqualify(String qualifiedName, char separator) {
return qualifiedName.substring(qualifiedName.lastIndexOf(separator) + 1);
}
/**
* Capitalize a <code>String</code>, changing the first letter to
* upper case as per {@link Character#toLowerCase(char)}.
* No other letters are changed.
* @param str the String to capitalize, may be null
* @return the capitalized String, <code>null</code> if null
*/
public static String capitalize(String str) {
return changeFirstCharacterCase(true, str);
}
/**
* Uncapitalize a <code>String</code>, changing the first letter to
* lower case as per {@link Character#toLowerCase(char)}.
* No other letters are changed.
* @param str the String to uncapitalize, may be null
* @return the uncapitalized String, <code>null</code> if null
*/
public static String uncapitalize(String str) {
return changeFirstCharacterCase(false, str);
}
private static String changeFirstCharacterCase(boolean capitalize, String str) {
int strLen;
if (str == null || (strLen = str.length()) == 0) {
return str;
}
StringBuffer buf = new StringBuffer(strLen);
if (capitalize) {
buf.append(Character.toUpperCase(str.charAt(0)));
}
else {
buf.append(Character.toLowerCase(str.charAt(0)));
}
buf.append(str.substring(1));
return buf.toString();
}
/**
* Extract the filename from the given path,
* e.g. "mypath/myfile.txt" -> "myfile.txt".
* @param path the file path
* @return the extracted filename
*/
public static String getFilename(String path) {
int separatorIndex = path.lastIndexOf(FOLDER_SEPARATOR);
return (separatorIndex != -1 ? path.substring(separatorIndex + 1) : path);
}
/**
* Apply the given relative path to the given path,
* assuming standard Java folder separation (i.e. "/" separators);
* @param path the path to start from (usually a full file path)
* @param relativePath the relative path to apply
* (relative to the full file path above)
* @return the full file path that results from applying the relative path
*/
public static String applyRelativePath(String path, String relativePath) {
int separatorIndex = path.lastIndexOf(FOLDER_SEPARATOR);
if (separatorIndex != -1) {
String newPath = path.substring(0, separatorIndex);
if (!relativePath.startsWith("/")) {
newPath += "/";
}
return newPath + relativePath;
}
else {
return relativePath;
}
}
/**
* Normalize the path by suppressing sequences like "path/.." and
* inner simple dots folders.
* <p>The result is convenient for path comparison. For other uses,
* notice that Windows separators ("\") are replaced by simple dashes.
* @param path the original path
* @return the normalized path
*/
public static String cleanPath(String path) {
String pathToUse = replace(path, WINDOWS_FOLDER_SEPARATOR, FOLDER_SEPARATOR);
String[] pathArray = delimitedListToStringArray(pathToUse, FOLDER_SEPARATOR);
List pathElements = new LinkedList();
int tops = 0;
for (int i = pathArray.length - 1; i >= 0; i--) {
if (CURRENT_PATH.equals(pathArray[i])) {
// do nothing
}
else if (TOP_PATH.equals(pathArray[i])) {
tops++;
}
else {
if (tops > 0) {
tops--;
}
else {
pathElements.add(0, pathArray[i]);
}
}
}
return collectionToDelimitedString(pathElements, FOLDER_SEPARATOR);
}
/**
* Compare two paths after normalization of them.
* @param path1 First path for comparizon
* @param path2 Second path for comparizon
* @return True if the two paths are equivalent after normalization
*/
public static boolean pathEquals(String path1, String path2) {
return cleanPath(path1).equals(cleanPath(path2));
}
/**
* Parse the given locale string into a <code>java.util.Locale</code>.
* This is the inverse operation of Locale's <code>toString</code>.
* @param localeString the locale string, following
* <code>java.util.Locale</code>'s toString format ("en", "en_UK", etc).
* Also accepts spaces as separators, as alternative to underscores.
* @return a corresponding Locale instance
*/
public static Locale parseLocaleString(String localeString) {
String[] parts = tokenizeToStringArray(localeString, "_ ", false, false);
String language = parts.length > 0 ? parts[0] : "";
String country = parts.length > 1 ? parts[1] : "";
String variant = parts.length > 2 ? parts[2] : "";
return (language.length() > 0 ? new Locale(language, country, variant) : null);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -