0

我一直在尝试解析 JSON 文件。它有点不符合结构,所以,为了进入一个结构,我正在使用该文件的子序列(以便它进入一个结构)。但是当我使用子序列或子字符串时,它只是省略了开始(第一个偏移)而不是结束偏移(结束原样)。这是代码:

String url = "http://earthquake.usgs.gov/earthquakes/feed/geojsonp/2.5/week"; //json file
String response=""; 
response = getInputStreamFromUrl(url); //getting the response
response= response.subSequence(16, response.length()-2).toString(); //i want to omit the last 2 characters from the string
  txt.setText(response);   //setting the response in a text view(doing it in android)  

我也尝试过计算字符然后设置结束偏移量,但它仍然省略了超过指定的字符。

4

0 回答 0