从java中的字符串中删除双引号

时间:2018-10-11 17:22:01

标签: android retrofit2

我想在Retrofit2中发送一个发布请求,该请求具有带有字符串字段的正文。但是当字符串有双引号时,服务器返回错误。当我在邮递员中删除双引号时,一切都很好(我可以在那做)。我的strin字段是一个uuid。我用uuid代替了字符串,但是没有删除双qoutes。

1 个答案:

答案 0 :(得分:0)

public static String removeDoubleQuota(String szLine){
        if(szLine == null){
            return null;
        }
         if(szLine.startsWith("\"")&&szLine.endsWith("\"")){
             szLine=szLine.substring(1,szLine.length()-1);
         }
         return szLine;
    }