3

我正在尝试获取在 Android 设备上动态创建的特定 JSON 文件,并使用 HTTP 发布请求将该数据发送到 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脚本获取第一个对象并将其存储到文本文件中没有问题,但另一个对象一直读取为空,我不知道为什么。我对 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>

现在输出文本文件看起来像这样,第一个对象保存得很好,第二个对象显示为空:

{"value":714,"timestamp":1.35118157664078E9,"name":"engine_speed"} 
value -> 714    timestamp -> 1351181576.64      name -> engine_speed    
{}
4

1 回答 1

7

您的问题出在您的 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,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);
于 2013-04-12T04:28:58.097 回答