大家好,我正在尝试将我的 JSONArray 发送到 php 页面我得到 HTTP//1.1 200 但我仍然无法在我的 php 页面中显示它,我仍然不知道我是否成功发送它在这里是我的安卓代码
public void sendJson() {
HttpClient client = new DefaultHttpClient();
HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
HttpResponse response;
try{
HttpPost post = new HttpPost("http://sap-sp-test.dff.jp/sp.php/ranking/index");
Log.i("entry", MixiActivity.entry.toString());
ArrayList<NameValuePair> nVP = new ArrayList<NameValuePair>(2);
nVP.add(new BasicNameValuePair("json", MixiActivity.entry.toString()));
post.setEntity(new UrlEncodedFormEntity(nVP));
response = client.execute(post);
Log.i("postData", response.getStatusLine().toString());
}
catch(Exception e){
e.printStackTrace();
Log.i("error", e.getMessage());
}
}
PHP 代码
$data = $_POST['json'];
echo $data;
我已经在这里尝试了一些示例,但是我仍然无法发送数据,并且当我尝试使用日志打印它时 JSON 数组(MixiActivity.entry)不为空,日志显示 JSON 数组的正确值但我可以'不要把它发送到 PHP 请帮我解决这个问题
非常感谢
尼可