Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この値をサーバーから文字列値として受け取ります
String responserecivied = {"dummyuser":{"Number":1,"CUSID":1}}
上記の文字列から最初と最後の中括弧を削除して、次のようにすることはできますか?
"dummyuser":{"Number":1,"CUSID":1}
可能です:
String s = yourString.substring(1, yourString.length() - 1);
ただし、文字列は実際にはJSONであるため、JSONリーダーを使用して解析することをお勧めします。