0
我正在java中製作一個小應用程序。我正嘗試返回JSON數組。但我得到錯誤,我需要使用我存儲的cookie,將其拆分並將其作爲JSON數組返回。拆分cookie並返回json數組
String json = null;
if(json == null)
{
//return empty array
json = "[]";
}
else
{
//split cookie
String wl[] = wishList.split("~");
json += "[";
for(int i = 0; i < json.length(); ++i)
{
json += wl[i];
}
json += "]";
問題是我不知道這是返回JSON數組的正確途徑, 任何幫助將是巨大的。謝謝!
你得到了什麼錯誤? – davedwards
我想你是指'我
teppic