2

我在使用 Robospice google http java 客户端创建发布请求和发送 json 时遇到问题。我的问题是,服务器收到一个空的请求数据。(postData 中没有)

@Override
    public AjaxResult loadDataFromNetwork() throws Exception {  

        JsonHttpContent jsonHttpContent = new JsonHttpContent(new JacksonFactory(), jsonObject);

        //ByteArrayContent.fromString("application/json", jsonObject.toString())
        HttpRequest request = getHttpRequestFactory().buildPostRequest(
                new GenericUrl(baseUrl),            
                jsonHttpContent);


        request.getHeaders().setContentType("application/json");

        request.setParser(new JacksonFactory().createJsonObjectParser());

        request.setContent(jsonHttpContent);

        HttpResponse httpResponse = request.execute();

        AjaxResult result =  httpResponse.parseAs(getResultType());

        return result;
    }

提前致谢!

4

2 回答 2

1

你可以这样做:

public class SignIn_Request extends GoogleHttpClientSpiceRequest<Login> {
    private String apiUrl;
    private JSONObject mJsonObject;

    public SignIn_Request(JSONObject mJsonObject) {
    super(Login.class);
    this.apiUrl = AppConstants.GLOBAL_API_BASE_ADDRESS + AppConstants.API_SIGN_IN;
    this.mJsonObject = mJsonObject;
    }

    @Override
    public Login loadDataFromNetwork() throws IOException {
    Ln.d("Call web service " + apiUrl);
    HttpRequest request = getHttpRequestFactory()//
        .buildPostRequest(new GenericUrl(apiUrl), ByteArrayContent.fromString("application/json", mJsonObject.toString()));
    request.setParser(new JacksonFactory().createJsonObjectParser());
    return request.execute().parseAs(getResultType());
    }

}

将您的 JSON 转换为字节数组并将其包含在您的发布请求中。

于 2014-02-03T09:33:37.470 回答
0

我自己一直在寻找类似的解决方案,我找到了一个很好的解释,说明了谷歌希望你如何格式化内容。

我创建了 POJO 类,并添加了一些 getter 和 setter 并将其用于数据,它似乎对我有用。

google-http-java-client json 更新现有对象

于 2013-12-05T12:08:56.970 回答