0

我有以下代码:

JSONObject jsonRequest = new JSONObject();
jsonRequest.put("id", 1);
jsonRequest.put("method", "mymethod");
entity = new JSONEntity(jsonRequest);
HttpPost request = new HttpPost("http://192.168.1.103/foo/bar.php");
request.setEntity(entity);
HttpResponse response = httpClient.execute(request);

删除了不相关的代码

它发布到一个 .php 页面。在 .php 页面上,我调用var_dump以检查 $_POST 和 $_GET 的内容。两者都是空的。

任何想法?

4

1 回答 1

0

解决了。获取php中的数据:

$input = file_get_contents('php://input');
于 2011-04-26T19:03:24.607 回答