0

我必须将这个带有 HTTP 请求的 JsonArray 从客户端发送到服务器,并且必须将其提取到 servlet 页面。没有 NameValuePair 类,因为我的要求不同。

任何帮助,将不胜感激。

听到的是我用来发送参数的一些代码,但这次是它的 jsonArray,所以我不能使用它

   Map<String, String> params = new HashMap<String, String>();
   params.put(Constants.NAME, name);

然后构建身体。

 StringBuilder bodyBuilder = new StringBuilder();
Iterator<Entry<String, String>> iterator = params.entrySet().iterator();
// constructs the POST body using the parameters
while (iterator.hasNext()) {
    Entry<String, String> param = iterator.next();
    bodyBuilder.append(param.getKey()).append('=')
            .append(param.getValue());
    if (iterator.hasNext()) {
        bodyBuilder.append('&');
    }
}
String body = bodyBuilder.toString();

然后是 HTTP 请求。

 conn = (HttpURLConnection)url.openConnection();
        conn.setDoOutput(true);
        conn.setUseCaches(false);
        conn.setFixedLengthStreamingMode(bytes.length);
        conn.setRequestMethod("POST");
        conn.setRequestProperty("Content-Type",
                "application/x-www-forurlencoded;charset=UTF-8");
        // post the request
        OutputStream out = conn.getOutputStream();

        out.write(bytes);
4

2 回答 2

3

这样您就可以将 JSON 数组发送到服务器

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);

StringEntity se = new StringEntity(jsonArray.toString());
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
httppost.setEntity(se);

HttpResponse response = httpclient.execute(httppost);

Servlet 您可以像这样读取 json 数组(在 Servlet 的 doPost 方法中使用此代码):

StringBuilder sb = new StringBuilder();
BufferedReader br = request.getReader();
String str;
while( (str = br.readLine()) != null ){
    sb.append(str);
}    
JSONArray jArr = new JSONArray(sb.toString());
于 2013-03-11T08:23:28.677 回答
1

Ahhhhhhh ...跳过一些额外的工作..对于那些理解我的问题的人,我正在发布答案...使用我在问题中提到的方法,您可以简单地将JsonArray接收到Servlet ..

正如我提到的,把它放到参数中

params.put("json", jsonArray.toString());

然后在servlet中接收..

    String jsonArray=request.getParameter("json");
    JSONArray jArr = new JSONArray(j.toString());
于 2013-03-11T09:16:02.207 回答