String字符串去掉双引号

来源:互联网 发布:私密空间软件 编辑:程序博客网 时间:2024/05/22 03:36
    public static String stringReplace(String str) {        //去掉" "号       String str= str.replace("\"", "");        return str ;    }
原创粉丝点击