/** * 去右空格 * @param str * @return */ public String trimRight(String str) { if (str == null || str.equals("")) { return str; } else { return str.replaceAll("[ ]+$", ""); } } /** * 去左空格 * @param str * @return */ public String trimLeft(String str) { if (str == null || str.equals("")) { return str; } else { return str.replaceAll("^[ ]+", ""); } }