91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Spring Utils工具類

發布時間:2020-07-31 09:43:45 來源:億速云 閱讀:318 作者:小豬 欄目:編程語言

這篇文章主要為大家展示了如何使用Spring Utils工具類,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

Spring提供的工具類,主要用于框架內部使用,這個類提供了一些簡單的方法,并且提供了易于使用的方法在分割字符串,如CSV字符串,以及集合和數組。

StringUtils提供常用的方法如下:

判斷對象對象是否為null或者空字符串

public static boolean isEmpty(@Nullable Object str) {
	return (str == null || "".equals(str));
}

判斷給的序列是否為空或者length為0

public static boolean hasLength(@Nullable CharSequence str) {
	return (str != null && str.length() > 0);
}

	public static boolean hasLength(@Nullable String str) {
		return (str != null && !str.isEmpty());
	}

判斷字符串是否以某個字符串開頭

public static boolean startsWithIgnoreCase(@Nullable String str, @Nullable String prefix) {
	return (str != null && prefix != null && str.length() >= prefix.length() &&
			str.regionMatches(true, 0, prefix, 0, prefix.length()));
}

判斷字符串是否以某個字符串結尾

public static boolean endsWithIgnoreCase(@Nullable String str, @Nullable String suffix) {
	return (str != null && suffix != null && str.length() >= suffix.length() &&
			str.regionMatches(true, str.length() - suffix.length(), suffix, 0, suffix.length()));
}

用另一個字符串替換字符串中出現的所有子字符串

public static String replace(String inString, String oldPattern, @Nullable String newPattern) {
		if (!hasLength(inString) || !hasLength(oldPattern) || newPattern == null) {
			return inString;
		}
		//oldPattern字符串第一次出現的位置
		int index = inString.indexOf(oldPattern);
		if (index == -1) {
			// no occurrence -> can return input as-is
			return inString;
		}
		//字符串長度
	int capacity = inString.length();
	if (newPattern.length() > oldPattern.length()) {
		capacity += 16;
	}
	StringBuilder sb = new StringBuilder(capacity);

	int pos = 0; // our position in the old string
	int patLen = oldPattern.length();
	while (index >= 0) {
		sb.append(inString, pos, index);
		sb.append(newPattern);
		pos = index + patLen;
		index = inString.indexOf(oldPattern, pos);
	}

	// append any characters to the right of a match
	sb.append(inString, pos, inString.length());
	return sb.toString();
}

根據給定的路徑規范化路徑

public static String cleanPath(String path) {
		if (!hasLength(path)) {
			return path;
		}
  //用新字符串替換舊字符串
	String pathToUse = replace(path, WINDOWS_FOLDER_SEPARATOR, FOLDER_SEPARATOR);
	// Shortcut if there is no work to do
	if (pathToUse.indexOf('.') == -1) {
		return pathToUse;
	}

	// Strip prefix from path to analyze, to not treat it as part of the
	// first path element. This is necessary to correctly parse paths like
	// "file:core/../core/io/Resource.class", where the ".." should just
	// strip the first "core" directory while keeping the "file:" prefix.
	int prefixIndex = pathToUse.indexOf(':');
	String prefix = "";
	if (prefixIndex != -1) {
		prefix = pathToUse.substring(0, prefixIndex + 1);
		if (prefix.contains(FOLDER_SEPARATOR)) {
			prefix = "";
		}
		else {
			pathToUse = pathToUse.substring(prefixIndex + 1);
		}
	}
	if (pathToUse.startsWith(FOLDER_SEPARATOR)) {
		prefix = prefix + FOLDER_SEPARATOR;
		pathToUse = pathToUse.substring(1);
	}

	String[] pathArray = delimitedListToStringArray(pathToUse, FOLDER_SEPARATOR);
	LinkedList<String> pathElements = new LinkedList<>();
	int tops = 0;

	for (int i = pathArray.length - 1; i >= 0; i--) {
		String element = pathArray[i];
		if (CURRENT_PATH.equals(element)) {
			// Points to current directory - drop it.
		}
		else if (TOP_PATH.equals(element)) {
			// Registering top path found.
			tops++;
		}
		else {
			if (tops > 0) {
				// Merging path element with element corresponding to top path.
				tops--;
			}
			else {
				// Normal path element found.
				pathElements.add(0, element);
			}
		}
	}

	// Remaining top paths need to be retained.
	for (int i = 0; i < tops; i++) {
		pathElements.add(0, TOP_PATH);
	}
	// If nothing else left, at least explicitly point to current path.
	if (pathElements.size() == 1 && "".equals(pathElements.getLast()) && !prefix.endsWith(FOLDER_SEPARATOR)) {
		pathElements.add(0, CURRENT_PATH);
	}

	return prefix + collectionToDelimitedString(pathElements, FOLDER_SEPARATOR);
}

以上就是關于如何使用Spring Utils工具類的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江阴市| 江孜县| 华亭县| 巢湖市| 天柱县| 来宾市| 浪卡子县| 小金县| 蕲春县| 蒙阴县| 阿图什市| 洱源县| 溧水县| 永仁县| 鄂尔多斯市| 枣阳市| 峨边| 郯城县| 伽师县| 龙山县| 洞头县| 平远县| 平泉县| 根河市| 泰和县| 宝丰县| 时尚| 阜新市| 邯郸市| 洪泽县| 抚松县| 扎赉特旗| 济宁市| 封丘县| 牙克石市| 板桥市| 榆中县| 兴海县| 贵溪市| 广平县| 常宁市|