2016-11-18 74 views
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數組的正確途徑, 任何幫助將是巨大的。謝謝!

+0

你得到了什麼錯誤? – davedwards

+0

我想你是指'我 teppic

回答

0

我覺得你的程序將永遠不會碰到else statement 如下代碼:

String json = null; 
if(json == null) 
{ 
    //return empty array 
    json = "[]"; 
} 

的JSON永遠「[]」檢查一遍,請