InputStreamReader
結果を読み取ると「\」がなくなり、文字列に「n」が残るJSONサービスがあります。
「\n」を次の行に変換して TextArea に表示するのに問題があります。
例えば:
Service Result: Hello\nWorld
PassThrough InputStreamReader: HellonWorld
TextArea Output: HellonWorld
私はそれが必要です:
Service Result: Hello\nWorld
PassThrough InputStreamReader: Hello
World
TextArea Output: Hello
World
この問題を解決する方法を教えてください。
私は LWUIT を使用しており、J2ME デバイス向けに開発しています。