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