拆分cookie并返回json数组

时间:2016-11-18 00:29:40

标签: java json parsing cookies

我在java中创建一个小应用程序。我正在尝试返回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数组的正确方法, 任何帮助都会很棒。谢谢!

1 个答案:

答案 0 :(得分:0)

我认为您的计划永远不会遇到else statement 如下面的代码:

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

json总是“[]”请再次检查