有时候需要去掉字符串中的双引号操作,可以使用 public static String removeDoubleQuotes(String result) { //去掉" "号 return result.replace("\"", ""); }