1

私はwebserviceアンドロイドから電話をかけ、以下のような応答を得ました.....

WebService からの結果 =

11-30 13:21:16.304: DEBUG/Inside SOAP(512): JSON output {
11-30 13:21:16.304: DEBUG/Inside SOAP(512):   "_str": "anyType{string\u003dImplements and Equipments; string\u003dInsurance; string\u003dIrrigation and Water; }"
11-30 13:21:16.304: DEBUG/Inside SOAP(512): }

これらの結果を解析し、データベースに保存したいと思いSQLiteます。それはどのように行うことができますか?あなたの助けが必要です...

4

1 に答える 1

3

「=」に続き、「;」に先行するすべての文字列を取得したいと仮定しています。

簡単な例を次に示します。

// This is the string you want to parse
String searchableString = "string=first; string=second; string=third";

int indexOfEqualsSign = searchableString.indexOf("=");
int indexOfSemicolon = searchableString.indexOf(";");

while (indexOfEqualsSign >= 0) {
    String result = searchableString.substring(indexOfEqualsSign + 1, indexOfSemicolon);
    System.out.print(result);
    indexOfEqualsSign = searchableString.indexOf("=", indexOfSemicolon);
}

この例の出力は次のようになります。

first
second
third
于 2012-11-29T07:18:39.687 に答える