Java - 将字符串或列表作为字符串处理

时间:2016-10-08 09:32:11

标签: java json

我遇到一个问题,我接收字符串作为典型的字符串,或者它以列表的形式出现。

例如,我可以得到:

"Hello world"

或者我可以得到:

["Hello", "world"]

检测字符串对象中第二种类型并相应连接的理想方法是什么?

对不起,上下文的一些代码:

String result = "";

try
{
    result = json.getString("result"); //This could be one of the two options above
}
catch (JSONException e)
{
    // Do nothing
}

0 个答案:

没有答案