我在客户端中使用了以下代码:
HttpPost post = new HttpPost(url);
post.setEntity(new ByteArrayEntity(myString.getBytes("UTF8")));
HttpResponse response = this.execute(post);
我现在想访问服务器端的字符串。处理方法如下所示:
public void handle(String target, Request baseRequest, HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException { ... }
该请求只允许我访问内容长度和类型,而不是内容本身。任何指针?
我使用 java 作为 pl 和 javax.servlet 的内置类。