我正在尝试获取在Android设备上动态创建的特定JSON文件,并使用HTTP post请求将该数据发送到PHP脚本以存储到文本文件中供以后使用。最后我还需要这样做,以便将数据保存在MySQL数据库中,但我一步一步。 JSON文件格式的示例如下:
{"timestamp": 1351181576.64078, "name": "engine_speed", "value": 714.0}
{"timestamp": 1351181576.64578, "name": "vehicle_speed", "value": 0.0}
{"timestamp": 1351181576.6507802, "name": "brake_pedal_status", "value": true}
这个文件是在Android上逐行动态创建的,所以我不能一次发送整个文件,但创建的每一行我想发送给PHP脚本。我编写了一个基本的Android应用程序,当按下按钮时,它会获取JSONObject并使用HTTP Post将其发送到PHP脚本。现在我不担心将实际的JSON文件解析为要发送的对象,而只是使用两个测试JSONObjects。 PHP脚本获取第一个对象并将其存储到文本文件中没有问题,但另一个对象仍然读取为null,我无法弄清楚为什么。我对PHP和Android编程比较陌生,不确定我是否以正确的方式发送和接收数据。以下是我相关的Android应用程序代码的片段:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Button button = (Button) findViewById(R.id.sendData);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Perform action on click
Toast.makeText(MainActivity.this, "button was pressed",
Toast.LENGTH_SHORT).show();
try {
JSONObject json = new JSONObject();
json.put("timestamp", 1351181576.64078);
json.put("name", "engine_speed");
json.put("value", 714.0);
postData(json);
JSONObject json2 = new JSONObject();
json.put("timestamp", 1351181576.7207818);
json.put("name", "steering_wheel_angle");
json.put("value", 11.1633);
postData(json2);
} catch (JSONException e) {
e.printStackTrace();
}
}
});
}
public void postData(JSONObject json) throws JSONException {
HttpClient httpclient = new DefaultHttpClient();
try {
HttpPost httppost = new HttpPost(URL);
List<NameValuePair> nvp = new ArrayList<NameValuePair>(2);
nvp.add(new BasicNameValuePair("json", json.toString()));
//httppost.setHeader("Content-type", "application/json");
httppost.setEntity(new UrlEncodedFormEntity(nvp));
HttpResponse response = httpclient.execute(httppost);
if(response != null) {
InputStream is = response.getEntity().getContent();
//input stream is response that can be shown back on android
}
}catch (Exception e) {
e.printStackTrace();
}
}
以下是从HTTP Post获取数据并将其写入文本文件的PHP代码:
<?php
$filename = __DIR__.DIRECTORY_SEPARATOR."jsontest.txt";
$json = $_POST['json'];
$data = json_decode($json, TRUE);
if(is_null($json) == false){
file_put_contents($filename, "$json \n", FILE_APPEND);
foreach ($data as $name => $value) {
file_put_contents($filename, "$name -> $value \t", FILE_APPEND);
}
file_put_contents($filename, "\n", FILE_APPEND);
}
$myFile = "jsontest.txt";
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
fclose($fh);
?>
<meta http-equiv="refresh" content="3" >
<html>
<!-- Displaying the data from text file, not really needed -->
<p><?php echo $theData; ?></p>
</html>
现在输出文本文件看起来像这样,第一个对象保存完好,第二个对象显示为null:
{"value":714,"timestamp":1.35118157664078E9,"name":"engine_speed"}
value -> 714 timestamp -> 1351181576.64 name -> engine_speed
{}
答案 0 :(得分:6)
您的问题出在Android应用中:
JSONObject json = new JSONObject();
json.put("timestamp", 1351181576.64078);
json.put("name", "engine_speed");
json.put("value", 714.0);
postData(json);
JSONObject json2 = new JSONObject();
json.put("timestamp", 1351181576.7207818);
json.put("name", "steering_wheel_angle");
json.put("value", 11.1633);
postData(json2);
您没有将任何数据放入json2
,而是修改json
。然后,您将完全未修改的 - 因此为空的json2
对象发送到PHP,后者将其作为{}
错误地打印出来。
如果您修复Android应用程序以正确填写json2
,那么事情应该有效:
JSONObject json2 = new JSONObject();
json2.put("timestamp", 1351181576.7207818);
json2.put("name", "steering_wheel_angle");
json2.put("value", 11.1633);
postData(json2);