java中常用的工具类

一、String工具类

package com.itjh.javaUtil;

import java.util.ArrayList;
import java.util.List;

/**
 *
 * String工具类. <br>
 *
 * @author 宋立君
 * @date 2014年06月24日
 */
public class StringUtil {

	private static final int INDEX_NOT_FOUND = -1;
	private static final String EMPTY = "";
	/**
	 * <p>
	 * The maximum size to which the padding constant(s) can expand.
	 * </p>
	 */
	private static final int PAD_LIMIT = 8192;

	/**
	 * 功能:将半角的符号转换成全角符号.(即英文字符转中文字符)
	 *
	 * @author 宋立君
	 * @param str
	 *            源字符串
	 * @return String
	 * @date 2014年06月24日
	 */
	public static String changeToFull(String str) {
		String source = "[email protected]#$%^&*()abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_=+\\|[];:‘\",<.>/?";
		String[] decode = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0",
				"!", "@", "#", "$", "%", "︿", "&", "*", "(", ")", "a", "b",
				"c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n",
				"o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
				"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L",
				"M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X",
				"Y", "Z", "-", "_", "=", "+", "\", "|", "【", "】", ";", ":",
				"‘", "\"", ",", "〈", "。", "〉", "/", "?" };
		String result = "";
		for (int i = 0; i < str.length(); i++) {
			int pos = source.indexOf(str.charAt(i));
			if (pos != -1) {
				result += decode[pos];
			} else {
				result += str.charAt(i);
			}
		}
		return result;
	}

	/**
	 * 功能:cs串中是否一个都不包含字符数组searchChars中的字符。
	 *
	 * @author 宋立君
	 * @param cs
	 *            字符串
	 * @param searchChars
	 *            字符数组
	 * @return boolean 都不包含返回true,否则返回false。
	 * @date 2014年06月24日
	 */
	public static boolean containsNone(CharSequence cs, char... searchChars) {
		if (cs == null || searchChars == null) {
			return true;
		}
		int csLen = cs.length();
		int csLast = csLen - 1;
		int searchLen = searchChars.length;
		int searchLast = searchLen - 1;
		for (int i = 0; i < csLen; i++) {
			char ch = cs.charAt(i);
			for (int j = 0; j < searchLen; j++) {
				if (searchChars[j] == ch) {
					if (Character.isHighSurrogate(ch)) {
						if (j == searchLast) {
							// missing low surrogate, fine, like
							// String.indexOf(String)
							return false;
						}
						if (i < csLast
								&& searchChars[j + 1] == cs.charAt(i + 1)) {
							return false;
						}
					} else {
						// ch is in the Basic Multilingual Plane
						return false;
					}
				}
			}
		}
		return true;
	}

	/**
	 * <p>
	 * 编码为Unicode,格式 ‘\u0020‘.
	 * </p>
	 *
	 * @author 宋立君
	 *
	 *         <pre>
	 *   CharUtils.unicodeEscaped(‘ ‘) = "\u0020"
	 *   CharUtils.unicodeEscaped(‘A‘) = "\u0041"
	 * </pre>
	 *
	 * @param ch
	 *            源字符串
	 * @return 转码后的字符串
	 * @date 2014年06月24日
	 */
	public static String unicodeEscaped(char ch) {
		if (ch < 0x10) {
			return "\\u000" + Integer.toHexString(ch);
		} else if (ch < 0x100) {
			return "\\u00" + Integer.toHexString(ch);
		} else if (ch < 0x1000) {
			return "\\u0" + Integer.toHexString(ch);
		}
		return "\\u" + Integer.toHexString(ch);
	}

	/**
	 * <p>
	 * 进行tostring操作,如果传入的是null,返回空字符串。
	 * </p>
	 *
	 * <pre>
	 * ObjectUtils.toString(null)         = ""
	 * ObjectUtils.toString("")           = ""
	 * ObjectUtils.toString("bat")        = "bat"
	 * ObjectUtils.toString(Boolean.TRUE) = "true"
	 * </pre>
	 *
	 * @param obj
	 *            源
	 * @return String
	 */
	public static String toString(Object obj) {
		return obj == null ? "" : obj.toString();
	}

	/**
	 * <p>
	 * 进行tostring操作,如果传入的是null,返回指定的默认值。
	 * </p>
	 *
	 * <pre>
	 * ObjectUtils.toString(null, null)           = null
	 * ObjectUtils.toString(null, "null")         = "null"
	 * ObjectUtils.toString("", "null")           = ""
	 * ObjectUtils.toString("bat", "null")        = "bat"
	 * ObjectUtils.toString(Boolean.TRUE, "null") = "true"
	 * </pre>
	 *
	 * @param obj
	 *            源
	 * @param nullStr
	 *            如果obj为null时返回这个指定值
	 * @return String
	 */
	public static String toString(Object obj, String nullStr) {
		return obj == null ? nullStr : obj.toString();
	}

	/**
	 * <p>
	 * 只从源字符串中移除指定开头子字符串.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.removeStart(null, *)      = null
	 * StringUtil.removeStart("", *)        = ""
	 * StringUtil.removeStart(*, null)      = *
	 * StringUtil.removeStart("www.domain.com", "www.")   = "domain.com"
	 * StringUtil.removeStart("domain.com", "www.")       = "domain.com"
	 * StringUtil.removeStart("www.domain.com", "domain") = "www.domain.com"
	 * StringUtil.removeStart("abc", "")    = "abc"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param remove
	 *            将要被移除的子字符串
	 * @return String
	 */
	public static String removeStart(String str, String remove) {
		if (isEmpty(str) || isEmpty(remove)) {
			return str;
		}
		if (str.startsWith(remove)) {
			return str.substring(remove.length());
		}
		return str;
	}

	/**
	 * <p>
	 * 只从源字符串中移除指定结尾的子字符串.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.removeEnd(null, *)      = null
	 * StringUtil.removeEnd("", *)        = ""
	 * StringUtil.removeEnd(*, null)      = *
	 * StringUtil.removeEnd("www.domain.com", ".com.")  = "www.domain.com"
	 * StringUtil.removeEnd("www.domain.com", ".com")   = "www.domain"
	 * StringUtil.removeEnd("www.domain.com", "domain") = "www.domain.com"
	 * StringUtil.removeEnd("abc", "")    = "abc"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param remove
	 *            将要被移除的子字符串
	 * @return String
	 */
	public static String removeEnd(String str, String remove) {
		if (isEmpty(str) || isEmpty(remove)) {
			return str;
		}
		if (str.endsWith(remove)) {
			return str.substring(0, str.length() - remove.length());
		}
		return str;
	}

	/**
	 * <p>
	 * 将一个字符串重复N次
	 * </p>
	 *
	 * <pre>
	 * StringUtil.repeat(null, 2) = null
	 * StringUtil.repeat("", 0)   = ""
	 * StringUtil.repeat("", 2)   = ""
	 * StringUtil.repeat("a", 3)  = "aaa"
	 * StringUtil.repeat("ab", 2) = "abab"
	 * StringUtil.repeat("a", -2) = ""
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param repeat
	 *            重复的次数
	 * @return String
	 */
	public static String repeat(String str, int repeat) {
		// Performance tuned for 2.0 (JDK1.4)

		if (str == null) {
			return null;
		}
		if (repeat <= 0) {
			return EMPTY;
		}
		int inputLength = str.length();
		if (repeat == 1 || inputLength == 0) {
			return str;
		}
		if (inputLength == 1 && repeat <= PAD_LIMIT) {
			return repeat(str.charAt(0), repeat);
		}

		int outputLength = inputLength * repeat;
		switch (inputLength) {
		case 1:
			return repeat(str.charAt(0), repeat);
		case 2:
			char ch0 = str.charAt(0);
			char ch1 = str.charAt(1);
			char[] output2 = new char[outputLength];
			for (int i = repeat * 2 - 2; i >= 0; i--, i--) {
				output2[i] = ch0;
				output2[i + 1] = ch1;
			}
			return new String(output2);
		default:
			StringBuilder buf = new StringBuilder(outputLength);
			for (int i = 0; i < repeat; i++) {
				buf.append(str);
			}
			return buf.toString();
		}
	}

	/**
	 * <p>
	 * 将一个字符串重复N次,并且中间加上指定的分隔符
	 * </p>
	 *
	 * <pre>
	 * StringUtil.repeat(null, null, 2) = null
	 * StringUtil.repeat(null, "x", 2)  = null
	 * StringUtil.repeat("", null, 0)   = ""
	 * StringUtil.repeat("", "", 2)     = ""
	 * StringUtil.repeat("", "x", 3)    = "xxx"
	 * StringUtil.repeat("?", ", ", 3)  = "?, ?, ?"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param separator
	 *            分隔符
	 * @param repeat
	 *            重复次数
	 * @return String
	 */
	public static String repeat(String str, String separator, int repeat) {
		if (str == null || separator == null) {
			return repeat(str, repeat);
		} else {
			// given that repeat(String, int) is quite optimized, better to rely
			// on it than try and splice this into it
			String result = repeat(str + separator, repeat);
			return removeEnd(result, separator);
		}
	}

	/**
	 * <p>
	 * 将某个字符重复N次.
	 * </p>
	 *
	 * @param ch
	 *            某个字符
	 * @param repeat
	 *            重复次数
	 * @return String
	 */
	public static String repeat(char ch, int repeat) {
		char[] buf = new char[repeat];
		for (int i = repeat - 1; i >= 0; i--) {
			buf[i] = ch;
		}
		return new String(buf);
	}

	/**
	 * <p>
	 * 字符串长度达不到指定长度时,在字符串右边补指定的字符.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.rightPad(null, *, *)     = null
	 * StringUtil.rightPad("", 3, ‘z‘)     = "zzz"
	 * StringUtil.rightPad("bat", 3, ‘z‘)  = "bat"
	 * StringUtil.rightPad("bat", 5, ‘z‘)  = "batzz"
	 * StringUtil.rightPad("bat", 1, ‘z‘)  = "bat"
	 * StringUtil.rightPad("bat", -1, ‘z‘) = "bat"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            指定的长度
	 * @param padChar
	 *            进行补充的字符
	 * @return String
	 */
	public static String rightPad(String str, int size, char padChar) {
		if (str == null) {
			return null;
		}
		int pads = size - str.length();
		if (pads <= 0) {
			return str; // returns original String when possible
		}
		if (pads > PAD_LIMIT) {
			return rightPad(str, size, String.valueOf(padChar));
		}
		return str.concat(repeat(padChar, pads));
	}

	/**
	 * <p>
	 * 扩大字符串长度,从左边补充指定字符
	 * </p>
	 *
	 * <pre>
	 * StringUtil.rightPad(null, *, *)      = null
	 * StringUtil.rightPad("", 3, "z")      = "zzz"
	 * StringUtil.rightPad("bat", 3, "yz")  = "bat"
	 * StringUtil.rightPad("bat", 5, "yz")  = "batyz"
	 * StringUtil.rightPad("bat", 8, "yz")  = "batyzyzy"
	 * StringUtil.rightPad("bat", 1, "yz")  = "bat"
	 * StringUtil.rightPad("bat", -1, "yz") = "bat"
	 * StringUtil.rightPad("bat", 5, null)  = "bat  "
	 * StringUtil.rightPad("bat", 5, "")    = "bat  "
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            扩大后的长度
	 * @param padStr
	 *            在右边补充的字符串
	 * @return String
	 */
	public static String rightPad(String str, int size, String padStr) {
		if (str == null) {
			return null;
		}
		if (isEmpty(padStr)) {
			padStr = " ";
		}
		int padLen = padStr.length();
		int strLen = str.length();
		int pads = size - strLen;
		if (pads <= 0) {
			return str; // returns original String when possible
		}
		if (padLen == 1 && pads <= PAD_LIMIT) {
			return rightPad(str, size, padStr.charAt(0));
		}

		if (pads == padLen) {
			return str.concat(padStr);
		} else if (pads < padLen) {
			return str.concat(padStr.substring(0, pads));
		} else {
			char[] padding = new char[pads];
			char[] padChars = padStr.toCharArray();
			for (int i = 0; i < pads; i++) {
				padding[i] = padChars[i % padLen];
			}
			return str.concat(new String(padding));
		}
	}

	/**
	 * <p>
	 * 扩大字符串长度,从左边补充空格
	 * </p>
	 *
	 * <pre>
	 * StringUtil.leftPad(null, *)   = null
	 * StringUtil.leftPad("", 3)     = "   "
	 * StringUtil.leftPad("bat", 3)  = "bat"
	 * StringUtil.leftPad("bat", 5)  = "  bat"
	 * StringUtil.leftPad("bat", 1)  = "bat"
	 * StringUtil.leftPad("bat", -1) = "bat"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            扩大后的长度
	 * @return String
	 */
	public static String leftPad(String str, int size) {
		return leftPad(str, size, ‘ ‘);
	}

	/**
	 * <p>
	 * 扩大字符串长度,从左边补充指定的字符
	 * </p>
	 *
	 * <pre>
	 * StringUtil.leftPad(null, *, *)     = null
	 * StringUtil.leftPad("", 3, ‘z‘)     = "zzz"
	 * StringUtil.leftPad("bat", 3, ‘z‘)  = "bat"
	 * StringUtil.leftPad("bat", 5, ‘z‘)  = "zzbat"
	 * StringUtil.leftPad("bat", 1, ‘z‘)  = "bat"
	 * StringUtil.leftPad("bat", -1, ‘z‘) = "bat"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            扩大后的长度
	 * @param padStr
	 *            补充的字符
	 * @return String
	 */
	public static String leftPad(String str, int size, char padChar) {
		if (str == null) {
			return null;
		}
		int pads = size - str.length();
		if (pads <= 0) {
			return str; // returns original String when possible
		}
		if (pads > PAD_LIMIT) {
			return leftPad(str, size, String.valueOf(padChar));
		}
		return repeat(padChar, pads).concat(str);
	}

	/**
	 * <p>
	 * 扩大字符串长度,从左边补充指定的字符
	 * </p>
	 *
	 * <pre>
	 * StringUtil.leftPad(null, *, *)      = null
	 * StringUtil.leftPad("", 3, "z")      = "zzz"
	 * StringUtil.leftPad("bat", 3, "yz")  = "bat"
	 * StringUtil.leftPad("bat", 5, "yz")  = "yzbat"
	 * StringUtil.leftPad("bat", 8, "yz")  = "yzyzybat"
	 * StringUtil.leftPad("bat", 1, "yz")  = "bat"
	 * StringUtil.leftPad("bat", -1, "yz") = "bat"
	 * StringUtil.leftPad("bat", 5, null)  = "  bat"
	 * StringUtil.leftPad("bat", 5, "")    = "  bat"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            扩大后的长度
	 * @param padStr
	 *            补充的字符串
	 * @return String
	 */
	public static String leftPad(String str, int size, String padStr) {
		if (str == null) {
			return null;
		}
		if (isEmpty(padStr)) {
			padStr = " ";
		}
		int padLen = padStr.length();
		int strLen = str.length();
		int pads = size - strLen;
		if (pads <= 0) {
			return str; // returns original String when possible
		}
		if (padLen == 1 && pads <= PAD_LIMIT) {
			return leftPad(str, size, padStr.charAt(0));
		}

		if (pads == padLen) {
			return padStr.concat(str);
		} else if (pads < padLen) {
			return padStr.substring(0, pads).concat(str);
		} else {
			char[] padding = new char[pads];
			char[] padChars = padStr.toCharArray();
			for (int i = 0; i < pads; i++) {
				padding[i] = padChars[i % padLen];
			}
			return new String(padding).concat(str);
		}
	}

	/**
	 * <p>
	 * 扩大字符串长度并将现在的字符串居中,被扩大部分用空格填充。
	 * <p>
	 *
	 * <pre>
	 * StringUtil.center(null, *)   = null
	 * StringUtil.center("", 4)     = "    "
	 * StringUtil.center("ab", -1)  = "ab"
	 * StringUtil.center("ab", 4)   = " ab "
	 * StringUtil.center("abcd", 2) = "abcd"
	 * StringUtil.center("a", 4)    = " a  "
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            扩大后的长度
	 * @return String
	 */
	public static String center(String str, int size) {
		return center(str, size, ‘ ‘);
	}

	/**
	 * <p>
	 * 将字符串长度修改为指定长度,并进行居中显示。
	 * </p>
	 *
	 * <pre>
	 * StringUtil.center(null, *, *)     = null
	 * StringUtil.center("", 4, ‘ ‘)     = "    "
	 * StringUtil.center("ab", -1, ‘ ‘)  = "ab"
	 * StringUtil.center("ab", 4, ‘ ‘)   = " ab"
	 * StringUtil.center("abcd", 2, ‘ ‘) = "abcd"
	 * StringUtil.center("a", 4, ‘ ‘)    = " a  "
	 * StringUtil.center("a", 4, ‘y‘)    = "yayy"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            指定的长度
	 * @param padStr
	 *            长度不够时补充的字符串
	 * @return String
	 * @throws IllegalArgumentException
	 *             如果被补充字符串为 null或者 empty
	 */
	public static String center(String str, int size, char padChar) {
		if (str == null || size <= 0) {
			return str;
		}
		int strLen = str.length();
		int pads = size - strLen;
		if (pads <= 0) {
			return str;
		}
		str = leftPad(str, strLen + pads / 2, padChar);
		str = rightPad(str, size, padChar);
		return str;
	}

	/**
	 * <p>
	 * 将字符串长度修改为指定长度,并进行居中显示。
	 * </p>
	 *
	 * <pre>
	 * StringUtil.center(null, *, *)     = null
	 * StringUtil.center("", 4, " ")     = "    "
	 * StringUtil.center("ab", -1, " ")  = "ab"
	 * StringUtil.center("ab", 4, " ")   = " ab"
	 * StringUtil.center("abcd", 2, " ") = "abcd"
	 * StringUtil.center("a", 4, " ")    = " a  "
	 * StringUtil.center("a", 4, "yz")   = "yayz"
	 * StringUtil.center("abc", 7, null) = "  abc  "
	 * StringUtil.center("abc", 7, "")   = "  abc  "
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            指定的长度
	 * @param padStr
	 *            长度不够时补充的字符串
	 * @return String
	 * @throws IllegalArgumentException
	 *             如果被补充字符串为 null或者 empty
	 */
	public static String center(String str, int size, String padStr) {
		if (str == null || size <= 0) {
			return str;
		}
		if (isEmpty(padStr)) {
			padStr = " ";
		}
		int strLen = str.length();
		int pads = size - strLen;
		if (pads <= 0) {
			return str;
		}
		str = leftPad(str, strLen + pads / 2, padStr);
		str = rightPad(str, size, padStr);
		return str;
	}

	/**
	 * <p>
	 * 检查字符串是否全部为小写.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.isAllLowerCase(null)   = false
	 * StringUtil.isAllLowerCase("")     = false
	 * StringUtil.isAllLowerCase("  ")   = false
	 * StringUtil.isAllLowerCase("abc")  = true
	 * StringUtil.isAllLowerCase("abC") = false
	 * </pre>
	 *
	 * @param cs
	 *            源字符串
	 * @return String
	 */
	public static boolean isAllLowerCase(String cs) {
		if (cs == null || isEmpty(cs)) {
			return false;
		}
		int sz = cs.length();
		for (int i = 0; i < sz; i++) {
			if (Character.isLowerCase(cs.charAt(i)) == false) {
				return false;
			}
		}
		return true;
	}

	/**
	 * <p>
	 * 检查是否都是大写.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.isAllUpperCase(null)   = false
	 * StringUtil.isAllUpperCase("")     = false
	 * StringUtil.isAllUpperCase("  ")   = false
	 * StringUtil.isAllUpperCase("ABC")  = true
	 * StringUtil.isAllUpperCase("aBC") = false
	 * </pre>
	 *
	 * @param cs
	 *            源字符串
	 * @return String
	 */
	public static boolean isAllUpperCase(String cs) {
		if (cs == null || StringUtil.isEmpty(cs)) {
			return false;
		}
		int sz = cs.length();
		for (int i = 0; i < sz; i++) {
			if (Character.isUpperCase(cs.charAt(i)) == false) {
				return false;
			}
		}
		return true;
	}

	/**
	 * <p>
	 * 反转字符串.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.reverse(null)  = null
	 * StringUtil.reverse("")    = ""
	 * StringUtil.reverse("bat") = "tab"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @return String
	 */
	public static String reverse(String str) {
		if (str == null) {
			return null;
		}
		return new StringBuilder(str).reverse().toString();
	}

	/**
	 * <p>
	 * 字符串达不到一定长度时在右边补空白.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.rightPad(null, *)   = null
	 * StringUtil.rightPad("", 3)     = "   "
	 * StringUtil.rightPad("bat", 3)  = "bat"
	 * StringUtil.rightPad("bat", 5)  = "bat  "
	 * StringUtil.rightPad("bat", 1)  = "bat"
	 * StringUtil.rightPad("bat", -1) = "bat"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param size
	 *            指定的长度
	 * @return String
	 */
	public static String rightPad(String str, int size) {
		return rightPad(str, size, ‘ ‘);
	}

	/**
	 * 从右边截取字符串.</p>
	 *
	 * <pre>
	 * StringUtil.right(null, *)    = null
	 * StringUtil.right(*, -ve)     = ""
	 * StringUtil.right("", *)      = ""
	 * StringUtil.right("abc", 0)   = ""
	 * StringUtil.right("abc", 2)   = "bc"
	 * StringUtil.right("abc", 4)   = "abc"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param len
	 *            长度
	 * @return String
	 */
	public static String right(String str, int len) {
		if (str == null) {
			return null;
		}
		if (len < 0) {
			return EMPTY;
		}
		if (str.length() <= len) {
			return str;
		}
		return str.substring(str.length() - len);
	}

	/**
	 * <p>
	 * 截取一个字符串的前几个.
	 * </p>
	 *
	 * <pre>
	 * StringUtil.left(null, *)    = null
	 * StringUtil.left(*, -ve)     = ""
	 * StringUtil.left("", *)      = ""
	 * StringUtil.left("abc", 0)   = ""
	 * StringUtil.left("abc", 2)   = "ab"
	 * StringUtil.left("abc", 4)   = "abc"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param len
	 *            截取的长度
	 * @return the String
	 */
	public static String left(String str, int len) {
		if (str == null) {
			return null;
		}
		if (len < 0) {
			return EMPTY;
		}
		if (str.length() <= len) {
			return str;
		}
		return str.substring(0, len);
	}

	/**
	 * <p>
	 * 得到tag字符串中间的子字符串,只返回第一个匹配项。
	 * </p>
	 *
	 * <pre>
	 * StringUtil.substringBetween(null, *)            = null
	 * StringUtil.substringBetween("", "")             = ""
	 * StringUtil.substringBetween("", "tag")          = null
	 * StringUtil.substringBetween("tagabctag", null)  = null
	 * StringUtil.substringBetween("tagabctag", "")    = ""
	 * StringUtil.substringBetween("tagabctag", "tag") = "abc"
	 * </pre>
	 *
	 * @param str
	 *            源字符串。
	 * @param tag
	 *            标识字符串。
	 * @return String 子字符串, 如果没有符合要求的,返回{@code null}。
	 */
	public static String substringBetween(String str, String tag) {
		return substringBetween(str, tag, tag);
	}

	/**
	 * <p>
	 * 得到两个字符串中间的子字符串,只返回第一个匹配项。
	 * </p>
	 *
	 * <pre>
	 * StringUtil.substringBetween("wx[b]yz", "[", "]") = "b"
	 * StringUtil.substringBetween(null, *, *)          = null
	 * StringUtil.substringBetween(*, null, *)          = null
	 * StringUtil.substringBetween(*, *, null)          = null
	 * StringUtil.substringBetween("", "", "")          = ""
	 * StringUtil.substringBetween("", "", "]")         = null
	 * StringUtil.substringBetween("", "[", "]")        = null
	 * StringUtil.substringBetween("yabcz", "", "")     = ""
	 * StringUtil.substringBetween("yabcz", "y", "z")   = "abc"
	 * StringUtil.substringBetween("yabczyabcz", "y", "z")   = "abc"
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param open
	 *            起字符串。
	 * @param close
	 *            末字符串。
	 * @return String 子字符串, 如果没有符合要求的,返回{@code null}。
	 */
	public static String substringBetween(String str, String open, String close) {
		if (str == null || open == null || close == null) {
			return null;
		}
		int start = str.indexOf(open);
		if (start != INDEX_NOT_FOUND) {
			int end = str.indexOf(close, start + open.length());
			if (end != INDEX_NOT_FOUND) {
				return str.substring(start + open.length(), end);
			}
		}
		return null;
	}

	/**
	 * <p>
	 * 得到两个字符串中间的子字符串,所有匹配项组合为数组并返回。
	 * </p>
	 *
	 * <pre>
	 * StringUtil.substringsBetween("[a][b][c]", "[", "]") = ["a","b","c"]
	 * StringUtil.substringsBetween(null, *, *)            = null
	 * StringUtil.substringsBetween(*, null, *)            = null
	 * StringUtil.substringsBetween(*, *, null)            = null
	 * StringUtil.substringsBetween("", "[", "]")          = []
	 * </pre>
	 *
	 * @param str
	 *            源字符串
	 * @param open
	 *            起字符串。
	 * @param close
	 *            末字符串。
	 * @return String 子字符串数组, 如果没有符合要求的,返回{@code null}。
	 */
	public static String[] substringsBetween(String str, String open,
			String close) {
		if (str == null || isEmpty(open) || isEmpty(close)) {
			return null;
		}
		int strLen = str.length();
		if (strLen == 0) {
			return new String[0];
		}
		int closeLen = close.length();
		int openLen = open.length();
		List<String> list = new ArrayList<String>();
		int pos = 0;
		while (pos < strLen - closeLen) {
			int start = str.indexOf(open, pos);
			if (start < 0) {
				break;
			}
			start += openLen;
			int end = str.indexOf(close, start);
			if (end < 0) {
				break;
			}
			list.add(str.substring(start, end));
			pos = end + closeLen;
		}
		if (list.isEmpty()) {
			return null;
		}
		return list.toArray(new String[list.size()]);
	}

	/**
	 * 功能:切换字符串中的所有字母大小写。<br/>
	 *
	 * <pre>
	 * StringUtil.swapCase(null)                 = null
	 * StringUtil.swapCase("")                   = ""
	 * StringUtil.swapCase("The dog has a BONE") = "tHE DOG HAS A bone"
	 * </pre>
	 *
	 *
	 * @param str
	 *            源字符串
	 * @return String
	 */
	public static String swapCase(String str) {
		if (StringUtil.isEmpty(str)) {
			return str;
		}
		char[] buffer = str.toCharArray();

		boolean whitespace = true;

		for (int i = 0; i < buffer.length; i++) {
			char ch = buffer[i];
			if (Character.isUpperCase(ch)) {
				buffer[i] = Character.toLowerCase(ch);
				whitespace = false;
			} else if (Character.isTitleCase(ch)) {
				buffer[i] = Character.toLowerCase(ch);
				whitespace = false;
			} else if (Character.isLowerCase(ch)) {
				if (whitespace) {
					buffer[i] = Character.toTitleCase(ch);
					whitespace = false;
				} else {
					buffer[i] = Character.toUpperCase(ch);
				}
			} else {
				whitespace = Character.isWhitespace(ch);
			}
		}
		return new String(buffer);
	}

	/**
	 * 功能:截取出最后一个标志位之后的字符串.<br/>
	 * 如果sourceStr为empty或者expr为null,直接返回源字符串。<br/>
	 * 如果expr长度为0,直接返回sourceStr。<br/>
	 * 如果expr在sourceStr中不存在,直接返回sourceStr。<br/>
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param sourceStr
	 *            被截取的字符串
	 * @param expr
	 *            分隔符
	 * @return String
	 */
	public static String substringAfterLast(String sourceStr, String expr) {
		if (isEmpty(sourceStr) || expr == null) {
			return sourceStr;
		}
		if (expr.length() == 0) {
			return sourceStr;
		}

		int pos = sourceStr.lastIndexOf(expr);
		if (pos == -1) {
			return sourceStr;
		}
		return sourceStr.substring(pos + expr.length());
	}

	/**
	 * 功能:截取出最后一个标志位之前的字符串.<br/>
	 * 如果sourceStr为empty或者expr为null,直接返回源字符串。<br/>
	 * 如果expr长度为0,直接返回sourceStr。<br/>
	 * 如果expr在sourceStr中不存在,直接返回sourceStr。<br/>
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param sourceStr
	 *            被截取的字符串
	 * @param expr
	 *            分隔符
	 * @return String
	 */
	public static String substringBeforeLast(String sourceStr, String expr) {
		if (isEmpty(sourceStr) || expr == null) {
			return sourceStr;
		}
		if (expr.length() == 0) {
			return sourceStr;
		}
		int pos = sourceStr.lastIndexOf(expr);
		if (pos == -1) {
			return sourceStr;
		}
		return sourceStr.substring(0, pos);
	}

	/**
	 * 功能:截取出第一个标志位之后的字符串.<br/>
	 * 如果sourceStr为empty或者expr为null,直接返回源字符串。<br/>
	 * 如果expr长度为0,直接返回sourceStr。<br/>
	 * 如果expr在sourceStr中不存在,直接返回sourceStr。<br/>
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param sourceStr
	 *            被截取的字符串
	 * @param expr
	 *            分隔符
	 * @return String
	 */
	public static String substringAfter(String sourceStr, String expr) {
		if (isEmpty(sourceStr) || expr == null) {
			return sourceStr;
		}
		if (expr.length() == 0) {
			return sourceStr;
		}

		int pos = sourceStr.indexOf(expr);
		if (pos == -1) {
			return sourceStr;
		}
		return sourceStr.substring(pos + expr.length());
	}

	/**
	 * 功能:截取出第一个标志位之前的字符串.<br/>
	 * 如果sourceStr为empty或者expr为null,直接返回源字符串。<br/>
	 * 如果expr长度为0,直接返回sourceStr。<br/>
	 * 如果expr在sourceStr中不存在,直接返回sourceStr。<br/>
	 * 如果expr在sourceStr中存在不止一个,以第一个位置为准。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param sourceStr
	 *            被截取的字符串
	 * @param expr
	 *            分隔符
	 * @return String
	 */
	public static String substringBefore(String sourceStr, String expr) {
		if (isEmpty(sourceStr) || expr == null) {
			return sourceStr;
		}
		if (expr.length() == 0) {
			return sourceStr;
		}
		int pos = sourceStr.indexOf(expr);
		if (pos == -1) {
			return sourceStr;
		}
		return sourceStr.substring(0, pos);
	}

	/**
	 * 功能:检查这个字符串是不是空字符串。<br/>
	 * 如果这个字符串为null或者trim后为空字符串则返回true,否则返回false。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param chkStr
	 *            被检查的字符串
	 * @return boolean
	 */
	public static boolean isEmpty(String chkStr) {
		if (chkStr == null) {
			return true;
		} else {
			return "".equals(chkStr.trim()) ? true : false;
		}
	}

	/**
	 * 如果字符串没有超过最长显示长度返回原字符串,否则从开头截取指定长度并加...返回。
	 *
	 * @param str
	 *            原字符串
	 * @param length
	 *            字符串最长显示的长度
	 * @return 转换后的字符串
	 */
	public static String trimString(String str, int length) {
		if (str == null) {
			return "";
		} else if (str.length() > length) {
			return str.substring(0, length - 3) + "...";
		} else {
			return str;
		}
	}

}
二、MD5

package com.itjh.javaUtil;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
 *
 * String工具类. <br>
 *
 * @author 宋立君
 * @date 2014年06月24日
 */
public class MD5Util {

	protected static char hexDigits[] = { ‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘,
			‘7‘, ‘8‘, ‘9‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘ };

	protected static MessageDigest messagedigest = null;

	static {
		try {
			messagedigest = MessageDigest.getInstance("MD5");
		} catch (NoSuchAlgorithmException nsaex) {
			System.err.println(MD5Util.class.getName()
					+ "初始化失败,MessageDigest不支持MD5Util。");
			nsaex.printStackTrace();
		}
	}

	/**
	 * 功能:加盐版的MD5.返回格式为MD5(密码+{盐值})
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param password
	 *            密码
	 * @param salt
	 *            盐值
	 * @return String
	 */
	public static String getMD5StringWithSalt(String password, String salt) {
		if (password == null) {
			throw new IllegalArgumentException("password不能为null");
		}
		if (StringUtil.isEmpty(salt)) {
			throw new IllegalArgumentException("salt不能为空");
		}
		if ((salt.toString().lastIndexOf("{") != -1)
				|| (salt.toString().lastIndexOf("}") != -1)) {
			throw new IllegalArgumentException("salt中不能包含 { 或者 }");
		}
		return getMD5String(password + "{" + salt.toString() + "}");
	}

	/**
	 * 功能:得到文件的md5值。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param file
	 *            文件。
	 * @return String
	 * @throws IOException
	 *             读取文件IO异常时。
	 */
	public static String getFileMD5String(File file) throws IOException {
		FileInputStream in = new FileInputStream(file);
		FileChannel ch = in.getChannel();
		MappedByteBuffer byteBuffer = ch.map(FileChannel.MapMode.READ_ONLY, 0,
				file.length());
		messagedigest.update(byteBuffer);
		return bufferToHex(messagedigest.digest());
	}

	/**
	 * 功能:得到一个字符串的MD5值。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param str
	 *            字符串
	 * @return String
	 */
	public static String getMD5String(String str) {
		return getMD5String(str.getBytes());
	}

	private static String getMD5String(byte[] bytes) {
		messagedigest.update(bytes);
		return bufferToHex(messagedigest.digest());
	}

	private static String bufferToHex(byte bytes[]) {
		return bufferToHex(bytes, 0, bytes.length);
	}

	private static String bufferToHex(byte bytes[], int m, int n) {
		StringBuffer stringbuffer = new StringBuffer(2 * n);
		int k = m + n;
		for (int l = m; l < k; l++) {
			appendHexPair(bytes[l], stringbuffer);
		}
		return stringbuffer.toString();
	}

	private static void appendHexPair(byte bt, StringBuffer stringbuffer) {
		char c0 = hexDigits[(bt & 0xf0) >> 4];
		char c1 = hexDigits[bt & 0xf];
		stringbuffer.append(c0);
		stringbuffer.append(c1);
	}
}
三、File工具类

package com.itjh.javaUtil;

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * 文件相关操作辅助类。
 *
 * @author 宋立君
 * @date 2014年06月24日
 */
public class FileUtil {
	private static final String FOLDER_SEPARATOR = "/";
	private static final char EXTENSION_SEPARATOR = ‘.‘;

	/**
	 * 功能:复制文件或者文件夹。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param inputFile
	 *            源文件
	 * @param outputFile
	 *            目的文件
	 * @param isOverWrite
	 *            是否覆盖(只针对文件)
	 * @throws IOException
	 */
	public static void copy(File inputFile, File outputFile, boolean isOverWrite)
			throws IOException {
		if (!inputFile.exists()) {
			throw new RuntimeException(inputFile.getPath() + "源目录不存在!");
		}
		copyPri(inputFile, outputFile, isOverWrite);
	}

	/**
	 * 功能:为copy 做递归使用。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param inputFile
	 * @param outputFile
	 * @param isOverWrite
	 * @throws IOException
	 */
	private static void copyPri(File inputFile, File outputFile,
			boolean isOverWrite) throws IOException {
		// 是个文件。
		if (inputFile.isFile()) {
			copySimpleFile(inputFile, outputFile, isOverWrite);
		} else {
			// 文件夹
			if (!outputFile.exists()) {
				outputFile.mkdir();
			}
			// 循环子文件夹
			for (File child : inputFile.listFiles()) {
				copy(child,
						new File(outputFile.getPath() + "/" + child.getName()),
						isOverWrite);
			}
		}
	}

	/**
	 * 功能:copy单个文件
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param inputFile
	 *            源文件
	 * @param outputFile
	 *            目标文件
	 * @param isOverWrite
	 *            是否允许覆盖
	 * @throws IOException
	 */
	private static void copySimpleFile(File inputFile, File outputFile,
			boolean isOverWrite) throws IOException {
		// 目标文件已经存在
		if (outputFile.exists()) {
			if (isOverWrite) {
				if (!outputFile.delete()) {
					throw new RuntimeException(outputFile.getPath() + "无法覆盖!");
				}
			} else {
				// 不允许覆盖
				return;
			}
		}
		InputStream in = new FileInputStream(inputFile);
		OutputStream out = new FileOutputStream(outputFile);
		byte[] buffer = new byte[1024];
		int read = 0;
		while ((read = in.read(buffer)) != -1) {
			out.write(buffer, 0, read);
		}
		in.close();
		out.close();
	}

	/**
	 * 功能:删除文件
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param file
	 *            文件
	 */
	public static void delete(File file) {
		deleteFile(file);
	}

	/**
	 * 功能:删除文件,内部递归使用
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param file
	 *            文件
	 * @return boolean true 删除成功,false 删除失败。
	 */
	private static void deleteFile(File file) {
		if (file == null || !file.exists()) {
			return;
		}
		// 单文件
		if (!file.isDirectory()) {
			boolean delFlag = file.delete();
			if (!delFlag) {
				throw new RuntimeException(file.getPath() + "删除失败!");
			} else {
				return;
			}
		}
		// 删除子目录
		for (File child : file.listFiles()) {
			deleteFile(child);
		}
		// 删除自己
		file.delete();
	}

	/**
	 * 从文件路径中抽取文件的扩展名, 例如. "mypath/myfile.txt" -> "txt". * @author 宋立君
	 *
	 * @date 2014年06月24日
	 * @param 文件路径
	 * @return 如果path为null,直接返回null。
	 */
	public static String getFilenameExtension(String path) {
		if (path == null) {
			return null;
		}
		int extIndex = path.lastIndexOf(EXTENSION_SEPARATOR);
		if (extIndex == -1) {
			return null;
		}
		int folderIndex = path.lastIndexOf(FOLDER_SEPARATOR);
		if (folderIndex > extIndex) {
			return null;
		}
		return path.substring(extIndex + 1);
	}

	/**
	 * 从文件路径中抽取文件名, 例如: "mypath/myfile.txt" -> "myfile.txt"。 * @author 宋立君
	 *
	 * @date 2014年06月24日
	 * @param path
	 *            文件路径。
	 * @return 抽取出来的文件名, 如果path为null,直接返回null。
	 */
	public static String getFilename(String path) {
		if (path == null) {
			return null;
		}
		int separatorIndex = path.lastIndexOf(FOLDER_SEPARATOR);
		return (separatorIndex != -1 ? path.substring(separatorIndex + 1)
				: path);
	}

	/**
	 * 功能:保存文件。
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param content
	 *            字节
	 * @param file
	 *            保存到的文件
	 * @throws IOException
	 */
	public static void save(byte[] content, File file) throws IOException {
		if (file == null) {
			throw new RuntimeException("保存文件不能为空");
		}
		if (content == null) {
			throw new RuntimeException("文件流不能为空");
		}
		InputStream is = new ByteArrayInputStream(content);
		save(is, file);
	}

	/**
	 * 功能:保存文件
	 *
	 * @author 宋立君
	 * @date 2014年06月24日
	 * @param streamIn
	 *            文件流
	 * @param file
	 *            保存到的文件
	 * @throws IOException
	 */
	public static void save(InputStream streamIn, File file) throws IOException {
		if (file == null) {
			throw new RuntimeException("保存文件不能为空");
		}
		if (streamIn == null) {
			throw new RuntimeException("文件流不能为空");
		}
		// 输出流
		OutputStream streamOut = null;
		// 文件夹不存在就创建。
		if (!file.getParentFile().exists()) {
			file.getParentFile().mkdirs();
		}
		streamOut = new FileOutputStream(file);
		int bytesRead = 0;
		byte[] buffer = new byte[8192];
		while ((bytesRead = streamIn.read(buffer, 0, 8192)) != -1) {
			streamOut.write(buffer, 0, bytesRead);
		}
		streamOut.close();
		streamIn.close();
	}
}

下面继续分享java中常用的一些工具类,希望给大家带来帮助!

1、FtpUtil

package com.itjh.javaUtil;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;

/**
 * 用来操作ftp的综合类。<br/>
 * 主要依赖jar包commons-net-3.1.jar。
 *
 * @author 宋立君
 * @date 2014年06月25日
 */
public class FtpUtil {
	// ftp 地址
	private String url;
	// ftp端口
	private int port;
	// 用户名
	private String userName;
	// 密码
	private String password;

	/**
	 * 构造函数
	 *
	 * @param url
	 *            ftp地址
	 * @param port
	 *            ftp端口
	 * @param userName
	 *            用户名
	 * @param password
	 *            密码
	 * @author 宋立君
	 * @date 2014年06月25日
	 *
	 */
	public FtpUtil(String url, int port, String userName, String password) {
		this.url = url;
		this.port = port;
		this.userName = userName;
		this.password = password;
	}

	/**
	 * 从FTP服务器下载指定文件名的文件。
	 *
	 * @param remotePath
	 *            FTP服务器上的相对路径
	 * @param fileName
	 *            要下载的文件名
	 * @param localPath
	 *            下载后保存到本地的路径
	 * @return 成功下载返回true,否则返回false。
	 * @throws IOException
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public boolean downFile(String remotePath, String fileName, String localPath)
			throws IOException {
		boolean success = false;
		FTPClient ftp = new FTPClient();
		try {
			int reply;
			ftp.connect(url, port);
			// 如果采用默认端口,可以使用ftp.connect(url)的方式直接连接FTP服务器
			ftp.login(userName, password);// 登录
			reply = ftp.getReplyCode();
			if (!FTPReply.isPositiveCompletion(reply)) {
				ftp.disconnect();
				return success;
			}
			ftp.changeWorkingDirectory(remotePath);// 转移到FTP服务器目录
			FTPFile[] fs = ftp.listFiles();
			FTPFile ff;
			for (int i = 0; i < fs.length; i++) {
				ff = fs[i];
				if (null != ff && null != ff.getName()
						&& ff.getName().equals(fileName)) {
					File localFile = new File(localPath + "/" + ff.getName());
					OutputStream is = new FileOutputStream(localFile);
					ftp.retrieveFile(ff.getName(), is);
					is.close();
				}
			}
			ftp.logout();
			success = true;
		} catch (IOException e) {
			e.printStackTrace();
			throw e;
		} finally {
			if (ftp.isConnected()) {
				try {
					ftp.disconnect();
				} catch (IOException ioe) {
				}
			}
		}
		return success;
	}

	/**
	 * 从FTP服务器列出指定文件夹下文件名列表。
	 *
	 * @param remotePath
	 *            FTP服务器上的相对路径
	 * @return List<String> 文件名列表,如果出现异常返回null。
	 * @throws IOException
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public List<String> getFileNameList(String remotePath) throws IOException {
		// 目录列表记录
		List<String> fileNames = new ArrayList<String>();
		FTPClient ftp = new FTPClient();
		try {
			int reply;
			ftp.connect(url, port);
			// 如果采用默认端口,可以使用ftp.connect(url)的方式直接连接FTP服务器
			ftp.login(userName, password);// 登录
			reply = ftp.getReplyCode();
			if (!FTPReply.isPositiveCompletion(reply)) {
				ftp.disconnect();
				return null;
			}
			ftp.changeWorkingDirectory(remotePath);// 转移到FTP服务器目录
			FTPFile[] fs = ftp.listFiles();
			for (FTPFile file : fs) {
				fileNames.add(file.getName());
			}
			ftp.logout();
		} catch (IOException e) {
			e.printStackTrace();
			throw e;
		} finally {
			if (ftp.isConnected()) {
				try {
					ftp.disconnect();
				} catch (IOException ioe) {
				}
			}
		}
		return fileNames;
	}

}
依赖包下载链接: http://pan.baidu.com/s/1nt7IoTr 密码: r93l

2、 汉字转拼音

package com.itjh.test;

import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.pinyin4j.format.HanyuPinyinVCharType;

public class SpellHelper {
     //将中文转换为英文
     public static String getEname(String name) {
           HanyuPinyinOutputFormat pyFormat = new HanyuPinyinOutputFormat();
           pyFormat.setCaseType(HanyuPinyinCaseType. LOWERCASE);
          pyFormat.setToneType(HanyuPinyinToneType. WITHOUT_TONE);
           pyFormat.setVCharType(HanyuPinyinVCharType. WITH_V);

            return PinyinHelper. toHanyuPinyinString(name, pyFormat, "");
     }

     //姓、名的第一个字母需要为大写
     public static String getUpEname(String name) {
            char[] strs = name.toCharArray();
           String newname = null;

        //名字的长度
     if (strs.length == 2) {
                newname = toUpCase(getEname ("" + strs[0])) + " "
                           + toUpCase(getEname ("" + strs[1]));
           } else if (strs. length == 3) {
                newname = toUpCase(getEname ("" + strs[0])) + " "
                           + toUpCase(getEname ("" + strs[1] + strs[2]));
           } else if (strs. length == 4) {
                newname = toUpCase(getEname ("" + strs[0] + strs[1])) + " "
                           + toUpCase(getEname ("" + strs[2] + strs[3]));
           } else {
                newname = toUpCase(getEname (name));
           }

            return newname;
     }

     //首字母大写
     private static String toUpCase(String str) {
           StringBuffer newstr = new StringBuffer();
           newstr.append((str.substring(0, 1)).toUpperCase()).append(
                     str.substring(1, str.length()));

            return newstr.toString();
     }

     public static void main(String[] args) {
           System. out.println( getEname("李宇春"));

     }

}
需要的jar包 pinyin4.jsr

3、zip工具类

package com.itjh.javaUtil;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;

import org.apache.commons.compress.archivers.zip.Zip64Mode;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;
import org.apache.commons.compress.archivers.zip.ZipFile;
import org.apache.commons.compress.utils.IOUtils;

/**
 * Zip工具栏类,依赖于commons-compress-1.5.jar。
 *
 * @author 宋立君
 * @date 2014年06月25日
 */
public class ZipUtil {

	// public static void main(String[] args){
	// try {
	// //new ZipUtil().decompressZip(new
	// File("d://img.zip"),"img/pic20140626.jpg","d://");
	// new ZipUtil().decompressZip(new File("d://img.zip"),"flight.log","d://");
	// //new File("d://flight.log").delete();
	// //ZipUtil.compress(new File("D://测试压缩文件"),new File("d://img.zip"));
	// // ZipUtil.compress(new File[]{new
	// File("F:/testZIP/testzip.txt"),new File("d://ftp"),new
	// File("e://ftp")},new File("d://压缩文件.zip"));
	// } catch (IOException e) {
	// e.printStackTrace();
	// }
	// }

	/**
	 * 把N多文件或文件夹压缩成zip。
	 *
	 * @param files
	 *            需要压缩的文件或文件夹。
	 * @param zipFilePath
	 *            压缩后的zip文件
	 * @throws IOException
	 *             压缩时IO异常。
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static void compress(File[] files, File zipFile) throws IOException {
		if (CollectionUtil.isEmpty(files)) {
			return;
		}
		ZipArchiveOutputStream out = new ZipArchiveOutputStream(zipFile);
		out.setUseZip64(Zip64Mode.AsNeeded);
		// 将每个文件用ZipArchiveEntry封装
		for (File file : files) {
			if (file == null) {
				continue;
			}
			compressOneFile(file, out, "");
		}
		if (out != null) {
			out.close();
		}
	}

	/**
	 * 功能:压缩文件或文件夹。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param srcFile
	 *            源文件。
	 * @param destFile
	 *            压缩后的文件
	 * @throws IOException
	 *             压缩时出现了异常。
	 */
	public static void compress(File srcFile, File destFile) throws IOException {
		ZipArchiveOutputStream out = null;
		try {
			out = new ZipArchiveOutputStream(new BufferedOutputStream(
					new FileOutputStream(destFile), 1024));
			compressOneFile(srcFile, out, "");
		} finally {
			out.close();
		}
	}

	/**
	 * 功能:压缩单个文件,非文件夹。私有,不对外开放。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param srcFile
	 *            源文件,不能是文件夹。
	 * @param out
	 *            压缩文件的输出流。
	 * @param destFile
	 *            压缩后的文件
	 * @param dir
	 *            在压缩包中的位置,根目录传入/。
	 * @throws IOException
	 *             压缩时出现了异常。
	 */
	private static void compressOneFile(File srcFile,
			ZipArchiveOutputStream out, String dir) throws IOException {
		if (srcFile.isDirectory()) {// 对文件夹进行处理。
			ZipArchiveEntry entry = new ZipArchiveEntry(dir + srcFile.getName()
					+ "/");
			out.putArchiveEntry(entry);
			out.closeArchiveEntry();
			// 循环文件夹中的所有文件进行压缩处理。
			String[] subFiles = srcFile.list();
			for (String subFile : subFiles) {
				compressOneFile(new File(srcFile.getPath() + "/" + subFile),
						out, (dir + srcFile.getName() + "/"));
			}
		} else { // 普通文件。
			InputStream is = null;
			try {
				is = new BufferedInputStream(new FileInputStream(srcFile));
				// 创建一个压缩包。
				ZipArchiveEntry entry = new ZipArchiveEntry(srcFile, dir
						+ srcFile.getName());
				out.putArchiveEntry(entry);
				IOUtils.copy(is, out);
				out.closeArchiveEntry();
			} finally {
				if (is != null)
					is.close();
			}
		}
	}

	/**
	 * 功能:解压缩zip压缩包下的所有文件。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param zipFile
	 *            zip压缩文件
	 * @param dir
	 *            解压缩到这个路径下
	 * @throws IOException
	 *             文件流异常
	 */
	public void decompressZip(File zipFile, String dir) throws IOException {
		ZipFile zf = new ZipFile(zipFile);
		try {
			for (Enumeration<ZipArchiveEntry> entries = zf.getEntries(); entries
					.hasMoreElements();) {
				ZipArchiveEntry ze = entries.nextElement();
				// 不存在则创建目标文件夹。
				File targetFile = new File(dir, ze.getName());
				// 遇到根目录时跳过。
				if (ze.getName().lastIndexOf("/") == (ze.getName().length() - 1)) {
					continue;
				}
				// 如果文件夹不存在,创建文件夹。
				if (!targetFile.getParentFile().exists()) {
					targetFile.getParentFile().mkdirs();
				}

				InputStream i = zf.getInputStream(ze);
				OutputStream o = null;
				try {
					o = new FileOutputStream(targetFile);
					IOUtils.copy(i, o);
				} finally {
					if (i != null) {
						i.close();
					}
					if (o != null) {
						o.close();
					}
				}
			}
		} finally {
			zf.close();
		}
	}

	/**
	 * 功能:解压缩zip压缩包下的某个文件信息。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param zipFile
	 *            zip压缩文件
	 * @param fileName
	 *            某个文件名,例如abc.zip下面的a.jpg,需要传入/abc/a.jpg。
	 * @param dir
	 *            解压缩到这个路径下
	 * @throws IOException
	 *             文件流异常
	 */
	public void decompressZip(File zipFile, String fileName, String dir)
			throws IOException {
		// 不存在则创建目标文件夹。
		File targetFile = new File(dir, fileName);
		if (!targetFile.getParentFile().exists()) {
			targetFile.getParentFile().mkdirs();
		}

		ZipFile zf = new ZipFile(zipFile);
		Enumeration<ZipArchiveEntry> zips = zf.getEntries();
		ZipArchiveEntry zip = null;
		while (zips.hasMoreElements()) {
			zip = zips.nextElement();
			if (fileName.equals(zip.getName())) {
				OutputStream o = null;
				InputStream i = zf.getInputStream(zip);
				try {
					o = new FileOutputStream(targetFile);
					IOUtils.copy(i, o);
				} finally {
					if (i != null) {
						i.close();
					}
					if (o != null) {
						o.close();
					}
				}
			}
		}
	}

	/**
	 * 功能:得到zip压缩包下的某个文件信息,只能在根目录下查找。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param zipFile
	 *            zip压缩文件
	 * @param fileName
	 *            某个文件名,例如abc.zip下面的a.jpg,需要传入/abc/a.jpg。
	 * @return ZipArchiveEntry 压缩文件中的这个文件,没有找到返回null。
	 * @throws IOException
	 *             文件流异常
	 */
	public ZipArchiveEntry readZip(File zipFile, String fileName)
			throws IOException {
		ZipFile zf = new ZipFile(zipFile);
		Enumeration<ZipArchiveEntry> zips = zf.getEntries();
		ZipArchiveEntry zip = null;
		while (zips.hasMoreElements()) {
			zip = zips.nextElement();
			if (fileName.equals(zip.getName())) {
				return zip;
			}
		}
		return null;
	}

	/**
	 * 功能:得到zip压缩包下的所有文件信息。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param zipFile
	 *            zip压缩文件
	 * @return Enumeration<ZipArchiveEntry> 压缩文件中的文件枚举。
	 * @throws IOException
	 *             文件流异常
	 */
	public Enumeration<ZipArchiveEntry> readZip(File zipFile)
			throws IOException {
		ZipFile zf = new ZipFile(zipFile);
		Enumeration<ZipArchiveEntry> zips = zf.getEntries();
		return zips;
	}
}
依赖包下载链接: http://pan.baidu.com/s/1eQ9YveU 密码: srnn

CollectionUtil代码:

package com.itjh.javaUtil;

import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

/**
 * 集合(List,Map,Set)辅助类。
 * @author 宋立君
 * @date 2014年06月25日
 */
public class CollectionUtil {

	/**
	 * 功能:从List中随机取出一个元素。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param objs 源List
	 * @return T List的一个元素
	 */
	public static <T> T randomOne(List<T> list){
		if(isEmpty(list)){
			return null;
		}
		return list.get(MathUtil.randomNumber(0, list.size()));
	}

	/**
	 * 功能:从数组中随机取出一个元素。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param objs 源数组
	 * @return T 数组的一个元素
	 */
	public static <T> T randomOne(T[] objs){
		if(isEmpty(objs)){
			return null;
		}
		return objs[MathUtil.randomNumber(0, objs.length)];
	}

	/**
	 * 功能:数组中是否存在这个元素。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param objArr 数组
	 * @param compare 元素
	 * @return 存在返回true,否则返回false。
	 */
	public static <T> boolean arrayContain(T[] objArr,T compare){
		if(isEmpty(objArr)){
			return false;
		}
		for(T obj : objArr){
			if(obj.equals(compare)){
				return true;
			}
		}
		return false;
	}

	/**
	 * 功能:向list中添加数组。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param list List
	 * @param array 数组
	 */
	public static <T> void addArrayToList(List<T> list, T[] array) {
		if (isEmpty(list)) {
			return;
		}
		for (T t : array) {
			list.add(t);
		}
	}

	/**
	 * 功能:将数组进行反转,倒置。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param objs 源数组
	 * @return T[] 反转后的数组
	 */
	public static <T> T[] reverseArray(T[] objs){
		if(isEmpty(objs)){
			return null;
		}
		T[] res=(T[])java.lang.reflect.Array.newInstance(objs[0].getClass(), objs.length);
		//新序号
		int k=0;
		for(int i=objs.length-1 ; i>=0 ; i--){
			res[k++]=objs[i];
		}
		return res;
	}

	/**
	 * 功能:将数组转为list。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param objs 源数组
	 * @return List
	 */
	public static <T> List<T> arrayToList(T[] objs){
		if(isEmpty(objs)){
			return null;
		}
		List<T> list=new LinkedList<T>();
		for(T obj : objs){
			list.add(obj);
		}
		return list;
	}

	/**
	 * 功能:将list转为数组。
	  * @author 宋立君
	 * @date 2014年06月25日
	 * @param list 源list
	 * @return T[]
	 */
	public static <T> T[] listToArray(List<T> list){
		if(isEmpty(list)){
			return null;
		}
		T[] objs=(T[])java.lang.reflect.Array.newInstance(list.get(0).getClass(), list.size());
		int i=0; //数组下标。
		for(T obj : list){
			objs[i++]=obj;
		}
		return objs;
	}

	/**
	 * 将一个字符串数组的内容全部添加到另外一个数组中,并返回一个新数组。
	 * @param array1 第一个数组
	 * @param array2 第二个数组
	 * @return T[] 拼接后的新数组
	 */
	public static <T> T[] concatenateArrays(T[] array1, T[] array2) {
		if (isEmpty(array1)) {
			return array2;
		}
		if (isEmpty(array2)) {
			return array1;
		}
		T[] resArray=(T[])java.lang.reflect.Array.newInstance(array1[0].getClass(), array1.length+array2.length);
		System.arraycopy(array1, 0, resArray, 0, array1.length);
		System.arraycopy(array2, 0, resArray, array1.length, array2.length);
		return resArray;
	}

	/**
	 * 将一个object添加到一个数组中,并返回一个新数组。
	 * @param array被添加到的数组
	 * @param object 被添加的object
	 * @return T[] 返回的新数组
	 */
	public static <T> T[] addObjectToArray(T[] array, T obj) {
		//结果数组
		T[] resArray=null;
		if (isEmpty(array)) {
			resArray=(T[])java.lang.reflect.Array.newInstance(obj.getClass(), 1);
			resArray[0]=obj;
			return resArray;
		}
		//原数组不为空时。
		resArray=(T[])java.lang.reflect.Array.newInstance(array[0].getClass(), array.length+1);
		System.arraycopy(array, 0, resArray, 0, array.length);
		resArray[array.length] = obj;
		return resArray;
	}

	/**
	 * 功能:判断数组是不是空。(null或者length==0)
	  * @author 宋立君
	 * @date 2014年06月25日
	 * @param array 数组
	 * @return boolean 空返回true,否则返回false。
	 */
	public static <T> boolean isEmpty(T[] array) {
		return (array == null || array.length==0);
	}

	/**
	 * 功能:集合是否为空。如果传入的值为null或者集合不包含元素都认为为空。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param collection 集合
	 * @return boolean 为空返回true,否则返回false。
	 */
	public static boolean isEmpty(Collection collection) {
		return (collection == null || collection.isEmpty());
	}

	/**
	 * 功能:Map是否为空。如果传入的值为null或者集合不包含元素都认为为空。
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param map Map
	 * @return boolean 为空返回true,否则返回false。
	 */
	public static boolean isEmpty(Map map) {
		return (map == null || map.isEmpty());
	}

}
MathUtil代码:

package com.itjh.javaUtil;

import java.math.BigDecimal;

/**
 * 数学运算辅助类。
 *
 * @author 宋立君
 * @date 2014年06月25日
 */
public class MathUtil {

	/**
	 * 功能:将字符串转换为BigDecimal,一般用于数字运算时。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param str
	 *            字符串
	 * @return BigDecimal,str为empty时返回null。
	 */
	public static BigDecimal toBigDecimal(String str) {
		if (StringUtil.isEmpty(str)) {
			return null;
		}
		return new BigDecimal(str);
	}

	/**
	 * 功能:将字符串抓换为double,如果失败返回默认值。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param str
	 *            字符串
	 * @param defaultValue
	 *            失败时返回的默认值
	 * @return double
	 */
	public static double toDouble(String str, double defaultValue) {
		if (str == null) {
			return defaultValue;
		}
		try {
			return Double.parseDouble(str);
		} catch (NumberFormatException nfe) {
			return defaultValue;
		}
	}

	/**
	 * 功能:将字符串抓换为float,如果失败返回默认值。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param str
	 *            字符串
	 * @param defaultValue
	 *            失败时返回的默认值
	 * @return float
	 */
	public static float toFloat(String str, float defaultValue) {
		if (str == null) {
			return defaultValue;
		}
		try {
			return Float.parseFloat(str);
		} catch (NumberFormatException nfe) {
			return defaultValue;
		}
	}

	/**
	 * 功能:将字符串抓换为long,如果失败返回默认值。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param str
	 *            字符串
	 * @param defaultValue
	 *            失败时返回的默认值
	 * @return long
	 */
	public static long toLong(String str, long defaultValue) {
		if (str == null) {
			return defaultValue;
		}
		try {
			return Long.parseLong(str);
		} catch (NumberFormatException nfe) {
			return defaultValue;
		}
	}

	/**
	 * 功能:将字符串抓换为int,如果失败返回默认值。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param str
	 *            字符串
	 * @param defaultValue
	 *            失败时返回的默认值
	 * @return int
	 */
	public static int toInt(String str, int defaultValue) {
		if (str == null) {
			return defaultValue;
		}
		try {
			return Integer.parseInt(str);
		} catch (NumberFormatException nfe) {
			return defaultValue;
		}
	}

	/**
	 * <p>
	 * 得到两个 <code>double</code>值中最大的一个.
	 * </p>
	 *
	 * @param a
	 *            值 1
	 * @param b
	 *            值 2
	 * @return 最大的值
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static float getMax(float a, float b) {
		if (Float.isNaN(a)) {
			return b;
		} else if (Float.isNaN(b)) {
			return a;
		} else {
			return Math.max(a, b);
		}
	}

	/**
	 * <p>
	 * 得到数组中最大的一个.
	 * </p>
	 *
	 * @param array
	 *            数组不能为null,也不能为空。
	 * @return 得到数组中最大的一个.
	 * @throws IllegalArgumentException
	 *             如果 <code>数组</code> 是 <code>null</code>
	 * @throws IllegalArgumentException
	 *             如果 <code>数组</code>是空
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static float getMax(float[] array) {
		// Validates input
		if (array == null) {
			throw new IllegalArgumentException("The Array must not be null");
		} else if (array.length == 0) {
			throw new IllegalArgumentException("Array cannot be empty.");
		}

		// Finds and returns max
		float max = array[0];
		for (int j = 1; j < array.length; j++) {
			max = getMax(array[j], max);
		}

		return max;
	}

	/**
	 * <p>
	 * 得到数组中最大的一个.
	 * </p>
	 *
	 * @param array
	 *            数组不能为null,也不能为空。
	 * @return 得到数组中最大的一个.
	 * @throws IllegalArgumentException
	 *             如果 <code>数组</code> 是 <code>null</code>
	 * @throws IllegalArgumentException
	 *             如果 <code>数组</code>是空
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double getMax(double[] array) {
		// Validates input
		if (array == null) {
			throw new IllegalArgumentException("The Array must not be null");
		} else if (array.length == 0) {
			throw new IllegalArgumentException("Array cannot be empty.");
		}

		// Finds and returns max
		double max = array[0];
		for (int j = 1; j < array.length; j++) {
			max = getMax(array[j], max);
		}

		return max;
	}

	/**
	 * <p>
	 * 得到两个 <code>double</code>值中最大的一个.
	 * </p>
	 *
	 * @param a
	 *            值 1
	 * @param b
	 *            值 2
	 * @return 最大的值
	 * @author 宋立君
	 * @date 2014年06月25日
	 * */
	public static double getMax(double a, double b) {
		if (Double.isNaN(a)) {
			return b;
		} else if (Double.isNaN(b)) {
			return a;
		} else {
			return Math.max(a, b);
		}
	}

	/**
	 * <p>
	 * 得到两个float中最小的一个。
	 * </p>
	 *
	 * @param a
	 *            值 1
	 * @param b
	 *            值 2
	 * @return double值最小的
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static float getMin(float a, float b) {
		if (Float.isNaN(a)) {
			return b;
		} else if (Float.isNaN(b)) {
			return a;
		} else {
			return Math.min(a, b);
		}
	}

	/**
	 * <p>
	 * 返回数组中最小的数值。
	 * </p>
	 *
	 * @param array
	 *            数组不能为null,也不能为空。
	 * @return 数组里面最小的float
	 * @throws IllegalArgumentException
	 *             如果<code>数组</code>是<code>null</code>
	 * @throws IllegalArgumentException
	 *             如果<code>数组</code>是空
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static float getMin(float[] array) {
		// Validates input
		if (array == null) {
			throw new IllegalArgumentException("数组不能为null。");
		} else if (array.length == 0) {
			throw new IllegalArgumentException("数组不能为空。");
		}

		// Finds and returns min
		float min = array[0];
		for (int i = 1; i < array.length; i++) {
			min = getMin(array[i], min);
		}

		return min;
	}

	/**
	 * <p>
	 * 返回数组中最小的double。
	 * </p>
	 *
	 * @param array
	 *            数组不能为null,也不能为空。
	 * @return 数组里面最小的double
	 * @throws IllegalArgumentException
	 *             如果<code>数组</code>是<code>null</code>
	 * @throws IllegalArgumentException
	 *             如果<code>数组</code>是空
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double getMin(double[] array) {
		// Validates input
		if (array == null) {
			throw new IllegalArgumentException("数组不能为null。");
		} else if (array.length == 0) {
			throw new IllegalArgumentException("数组不能为空。");
		}
		// Finds and returns min
		double min = array[0];
		for (int i = 1; i < array.length; i++) {
			min = getMin(array[i], min);
		}
		return min;
	}

	/**
	 * <p>
	 * 得到两个double中最小的一个。
	 * </p>
	 *
	 * @param a
	 *            值 1
	 * @param b
	 *            值 2
	 * @return double值最小的
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double getMin(double a, double b) {
		if (Double.isNaN(a)) {
			return b;
		} else if (Double.isNaN(b)) {
			return a;
		} else {
			return Math.min(a, b);
		}
	}

	/**
	 * 返回两个double的商 first除以second。
	 *
	 * @param first
	 *            第一个double
	 * @param second
	 *            第二个double
	 * @return double
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double divideDouble(double first, double second) {
		BigDecimal b1 = new BigDecimal(first);
		BigDecimal b2 = new BigDecimal(second);
		return b1.divide(b2).doubleValue();
	}

	/**
	 * 返回两个double的乘积 first*second。
	 *
	 * @param first
	 *            第一个double
	 * @param second
	 *            第二个double
	 * @return double
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double multiplyDouble(double first, double second) {
		BigDecimal b1 = new BigDecimal(first);
		BigDecimal b2 = new BigDecimal(second);
		return b1.multiply(b2).doubleValue();
	}

	/**
	 * 返回两个double的差值 first-second。
	 *
	 * @param first
	 *            第一个double
	 * @param second
	 *            第二个double
	 * @return double
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double subtractDouble(double first, double second) {
		BigDecimal b1 = new BigDecimal(first);
		BigDecimal b2 = new BigDecimal(second);
		return b1.subtract(b2).doubleValue();
	}

	/**
	 * 返回两个double的和值 first+second。
	 *
	 * @param first
	 *            第一个double
	 * @param second
	 *            第二个double
	 * @return double
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static double sumDouble(double first, double second) {
		BigDecimal b1 = new BigDecimal(first);
		BigDecimal b2 = new BigDecimal(second);
		return b1.add(b2).doubleValue();
	}

	/**
	 * 格式化double指定位数小数。例如将11.123格式化为11.1。
	 *
	 * @param value
	 *            原double数字。
	 * @param decimals
	 *            小数位数。
	 * @return 格式化后的double,注意为硬格式化不存在四舍五入。
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static String formatDouble(double value, int decimals) {
		String doubleStr = "" + value;
		int index = doubleStr.indexOf(".") != -1 ? doubleStr.indexOf(".")
				: doubleStr.indexOf(",");
		// Decimal point can not be found...
		if (index == -1)
			return doubleStr;
		// Truncate all decimals
		if (decimals == 0) {
			return doubleStr.substring(0, index);
		}
		int len = index + decimals + 1;
		if (len >= doubleStr.length())
			len = doubleStr.length();
		double d = Double.parseDouble(doubleStr.substring(0, len));
		return String.valueOf(d);
	}

	/**
	 * 生成一个指定位数的随机数,并将其转换为字符串作为函数的返回值。
	 *
	 * @param numberLength
	 *            随机数的位数。
	 * @return String 注意随机数可能以0开头。
	 * @author 宋立君
	 * @date 2014年06月25日
	 */
	public static String randomNumber(int numberLength) {
		// 记录生成的每一位随机数
		StringBuffer sb = new StringBuffer();
		for (int i = 0; i < numberLength; i++) {
			// 每次生成一位,随机生成一个0-10之间的随机数,不含10。
			Double ranDouble = Math.floor(Math.random() * 10);
			sb.append(ranDouble.intValue());
		}
		return sb.toString();
	}

	/**
	 * 功能:生成一个在最大数和最小数之间的随机数。会出现最小数,但不会出现最大数。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param minNum
	 *            最小数
	 * @param maxNum
	 *            最大数
	 * @return int
	 */
	public static int randomNumber(int minNum, int maxNum) {
		if (maxNum <= minNum) {
			throw new RuntimeException("maxNum必须大于minNum!");
		}
		// 计算出来差值
		int subtract = maxNum - minNum;
		Double ranDouble = Math.floor(Math.random() * subtract);
		return ranDouble.intValue() + minNum;
	}

	/**
	 * 功能:生成一个在最大数和最小数之间的随机数。会出现最小数,但不会出现最大数。<br/>
	 * 但不随机notin数组中指定的数字, 如果可随机的范围较小,可能会一直随机不到,或者随机的很慢。
	 *
	 * @author 宋立君
	 * @date 2014年06月25日
	 * @param minNum
	 *            最小数
	 * @param maxNum
	 *            最大数
	 * @param notin
	 *            不随机数组这些数字
	 * @return int
	 */
	public static int randomNumber(int minNum, int maxNum, Integer[] notin) {
		if (notin.length >= (maxNum - minNum)) {
			throw new RuntimeException("notin数组的元素已经把可以随机的都排除了,无法得到随机数!");
		}
		while (true) {
			int num = randomNumber(minNum, maxNum);
			if (!CollectionUtil.arrayContain(notin, num)) {
				return num;
			}
		}
	}
}
如果有问题,及时反馈!!

欢迎加入IT江湖官方群:383126909 我们一起成长 

引用 :http://www.itjhwd.com/javautilhz1/

  

时间: 2024-08-01 22:40:29

java中常用的工具类的相关文章

java中常用的工具类(二)

下面继续分享java中常用的一些工具类,希望给大家带来帮助! 1.FtpUtil Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

java中常用的工具类(三)

继续分享java中常用的一些工具类.前两篇的文章中有人评论使用Apache 的lang包和IO包,或者Google的Guava库.后续的我会加上的!谢谢支持IT江湖 一.连接数据库的综合类 Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

java中常用的工具类(一)

我们java程序员在开发项目的是常常会用到一些工具类.今天我汇总了一下java中常用的工具方法.大家可以在项目中使用.可以收藏!加入IT江湖官方群:383126909 我们一起成长 一.String工具类 Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 5

Android中常用的工具类01

1.图片和视频缩略图工具类 import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.media.ThumbnailUtils; /** * 缩略图生成工具类 * @author * */ public class ThumbnailGenerateUtils { private ThumbnailGenerateUtils(){}; /** * 根据指定的图像路径和大小来获取缩略图

Android中常用的工具类02

1.读取手机联系人信息 一般用在读取手机通讯录上传,这一块比较多. import java.util.ArrayList; import java.util.List; import android.content.ContentResolver; import android.content.Context; import android.database.Cursor; import android.provider.ContactsContract.CommonDataKinds.Phon

JAVA中封装JSONUtils工具类及使用

在JAVA中用json-lib-2.3-jdk15.jar包中提供了JSONObject和JSONArray基类,用于JSON的序列化和反序列化的操作.但是我们更习惯将其进一步封装,达到更好的重用. 封装后的JSON工具类JSONUtils.java代码如下: JSONUtils代码,点击展开 import java.util.ArrayList;import java.util.Collection;import java.util.HashMap;import java.util.Itera

java并发编程中常用的工具类 Executor

/***************************************************  * TODO: description .  * @author: gao_chun  * @since:  2015-4-17  * @version: 1.0.0  * @remark: 转载请注明出处  **************************************************/ java.util.concurrent.Executor 使用 Execut

第八章 Java中的并发工具类

等待多线程完成的CountDownLatch countDownLatch允许一个或多个线程等待其他线程完成操作. public class CountDownLatchTest { static CountDownLatch countDownLatch = new CountDownLatch(2); public static void main(String[] args) throws InterruptedException{ new Thread(new Runnable() {

Java中的并发工具类

1.等待多线程完成的CountDownLatch         CountDownLatch允许一个或多个线程等待其他线程完成操作.join用于让当前执行线程等待join线程执行结束.其实现原理是不停检查join线程是否存活,如果join线程存活则让当前线程永远等待.直到join线程中止后,线程的this.notifyAll()方法会被调用,调用notifyAll()方法是在JVM里实现的. 2.同步屏障CyclicBarrier                             Cyl