如何使用 Restlet apis for JavaEE 检索在 Http Post 请求中发送的数据?

Posted

技术标签:

【中文标题】如何使用 Restlet apis for JavaEE 检索在 Http Post 请求中发送的数据?【英文标题】:How to retrieve data sent in Http Post request using Restlet apis for JavaEE? 【发布时间】:2012-11-05 05:06:45 【问题描述】:

这是我在 android 上的 restlet 客户端代码:

    public void sendDataToServer(final JsonObject jsonObject) 
    new Thread(new Runnable() 

        public void run() 
            // TODO Auto-generated method stub
            String jsonObjectString = jsonObject.toString();
            StringEntity entity = null;
            try 
                entity = new StringEntity(jsonObjectString);
                entity.setContentType(APPLICATION_JSON);
             catch (UnsupportedEncodingException e1) 
                // TODO Auto-generated catch block
                e1.printStackTrace();
            

            ClientResource clientResource = new ClientResource("http://192.168.0.101:8080/RestletDemo/register");
            try 
                Representation representation = clientResource.post(entity, MediaType.APPLICATION_JSON);
//                  representation.getJsonObject();
                Response response = clientResource.getResponse();
                String jsonResponse = response.getEntity().getText();
             catch (IOException e) 
                // TODO Auto-generated catch block
                e.printStackTrace();
            


        
    ).start();



此代码在服务器端:

    @Post("json")
public String registerNumber(JsonRepresentation entity) 

    String serverResponse = "Number Registered";
    try 
//          JsonRepresentation respresentation = new JsonRepresentation();
        String response = this.getRequest().getEntity().getText();
        System.out.println(response);

        Gson gson = new Gson();
        serverResponse = gson.toJson(serverResponse);

     catch (IOException e) 
        // TODO Auto-generated catch block
        e.printStackTrace();
    
    return serverResponse;

当前场景:我能够向服务器发送发布请求。此外,我也能够收到回复。但是,我想在服务器上的 POST 请求中检索从 android 设备(客户端)发送的数据。我该如何克服这个问题?谢谢。

【问题讨论】:

【参考方案1】:

我已经解决了这个问题。这是服务器代码,用于在服务器端检索从客户端发送的 POST 数据。

    @Post("json")
public Representation registerNumber(Representation entity) 

System.out.println("JsonRepresentation : " + entity);
String postContent;
try 
postContent = entity.getText();
System.out.println("POST Content : " + postContent);
 catch (IOException e) 
// TODO Auto-generated catch block
e.printStackTrace();

return null;


您可以在终端使用 curl 测试此代码:

curl -i -X POST <your_url> -H "Content-Type: application/json" -d '"key" : "value"'

【讨论】:

以上是关于如何使用 Restlet apis for JavaEE 检索在 Http Post 请求中发送的数据?的主要内容,如果未能解决你的问题,请参考以下文章

Restlet DigestAuthenticator 散列本地密钥

Restlet:如何抑制服务器请求日志消息

我如何在RESTlet中加载和编辑客户资料?

GWT 中的 RESTLET -RPC CALL

Restlet 2.0.8:单个restlet应用程序实例的多种身份验证方法(BASIC、DIGEST)?

使用 Guice 实现 Restlet