我正在尝试从字符串中获取子字符串。我有一个xml响应,我只想获取几个标签,并有要解析的值。
但我收到错误消息:-字符''没有可行的选择

 responseObj.xmlResponse = response.getBody();
            String xmlbody =response.getBody();


   order OrderID=new order();
                String substr=xmlbody.substring(xmlbody.indexOf("<OrderID>"));

最佳答案

尝试这个。

String substr=xmlbody.substring(xmlbody.indexOf('<OrderID>'));

09-03 23:09