1

我正在使用 Java 向服务器发出 JSON 请求。这是以下参数。

{method:'SearchBySearchConfiguration',params:[{{SearchCriteria:'%arriva',
 IsAccountSearch:true,IsContactSearch:false,SearchByName:true,SearchByAddress:false
 CRMTextValues:[], CRMCurrencyValues:[]}]}

我可以这样做。

 JSONObject json=new JSONObject();
 json.put("method", "SearchBySearchConfiguration"); 

如何将名称-值对中的其余参数添加到 JSON 对象?

提前致谢!

4

6 回答 6

2

我能想到的一种方法是使用org.json库。我写了一个示例来构建您的请求对象的一部分:

public static void main(String[] args) throws JSONException {

    JSONObject jsonObject = new JSONObject();
    jsonObject.put("method", "SearchBySearchConfiguration");

    JSONArray jsonArray = new JSONArray();
    JSONObject innerRecord = new JSONObject();
    innerRecord.put("SearchCriteria", "%arriva");
    innerRecord.put("IsAccountSearch", true);

    jsonArray.put(innerRecord);
    jsonObject.put("params",jsonArray);

    System.out.println("jsonObject :"+jsonObject);

}

输出是:

jsonObject :{"method":"SearchBySearchConfiguration","params":[{"IsAccountSearch":true,"SearchCriteria":"%arriva"}]}

另一种技术是构建类似于您的请求结构的 Java 对象。然后,您可以使用Jackson库的 ObjectMapper 类将其转换为 json。

在这两种情况下,一旦获得 json 字符串,就可以直接将其写入请求正文中。

于 2012-09-21T11:32:18.743 回答
1
JSONObject json=new JSONObject();
  json.put("method", "SearchBySearchConfiguration"); 
  JSONArray paramsArr = new JSONArray();
    JSONObject arrobj = new JSONOject();
      arrobj.put("SearchCriteria","%arriva");
      arrobj.put("IsAccountSearch","true");
      arrobj.put("IsContactSearch","false");
      arrobj.put("SearchByName","true");
      arrobj.put("SearchByAddress","false");
      arrobj.put("CRMTextValues",new JSONArray());
      arrobj.put("CRMCurrencyValues",new JSONArray());
    paramsArr.put(arrobj);
  json.put("params",paramsArr);
于 2012-09-21T11:21:14.793 回答
0

最好为此使用gson

首先,您需要创建具有以下成员的类:

public class TestClass{

    private String method;
    private ParamClass params;


    }
public class ParamClass{
    private String SearchCriteria;
    private boolean IsAccountSearch;
    private boolean IsContactSearch;
    private boolean SearchByName;
    private boolean SearchByAddress;
    private String[] CRMTextValues;
    private String[] CRMCurrencyValues;
}

用法 :

序列化:

Gson gson = new Gson();    
String jsonString = gson.toJson(testClassObject);

反序列化:

Gson gson = new Gson();
TestClass testClassObject = gson.fromJson(jsonString , TestClass.class);
于 2012-09-21T11:21:59.040 回答
0

请参阅下面的示例,其中返回 JSONArray,然后我如何将其转换为 JSONObject 形式...

public JSONArray go() throws IOException, JSONException {

JSONArray json = readJsonFromUrl("http://www.xxxxxxxx.com/AppData.aspx");

return json;
 }


JSONArray jarr;

for(int i=0 ; i<jarr.length() ; i++){

JSONObject jobj = jarr.getJSONObject(i);

String mainText = new String();
String provText = new String();
String couText = new String();      

try{

mainText = jobj.getString("Overview");
System.out.println(mainText);
}catch(Exception ex){}

try{

JSONObject jProv = jobj.getJSONObject("Provider");
provText = jProv.getString("Name");
System.out.println(provText);
}catch(Exception ex){}



try{                

JSONObject jCou = jobj.getJSONObject("Counterparty");
couText = jCou.getString("Value");
System.out.println(couText);
}catch(Exception ex){}

Jackson 做 JSON Parsing 的效率很高

请参阅此链接:

http://jackson.codehaus.org/

Gson 由 google 提供,这也是处理 JSON 的好方法。

于 2012-09-21T11:22:58.153 回答
0

您可以创建JSONArray并将该数组放入JSONObject

于 2012-09-21T11:12:01.337 回答
0

要添加paramsJSONArray使用。在 params 中,我们用于JSONObject添加 SearchByAddress、IsAccountSearch 等数据。参考http://www.mkyong.com/java/json-simple-example-read-and-write-json/

package com.test.json;

import java.io.FileWriter;
import java.io.IOException;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;

public class JsonSimpleExample {
     public static void main(String[] args) {

    JSONObject obj = new JSONObject();
    obj.put("method", "SearchBySearchConfiguration");

    JSONArray list = new JSONArray();
    JSONObject innerObj = new JSONObject();

    innerObj.put("SearchCriteria","%arriva" );
    innerObj.put("IsAccountSearch",true);
    innerObj.put("IsContactSearch",false);
    innerObj.put("SearchByName",true);
    innerObj.put("SearchByAddress",false);
    innerObj.put("CRMTextValues",new JSONArray());
    innerObj.put("CRMCurrencyValues",new JSONArray());

    list.add(innerObj);

    obj.put("params", list);
    System.out.print(obj);

     }

}
于 2012-09-21T11:39:06.707 回答