- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试获取在 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 文件解析为要发送的对象,而只是使用两个测试 JSONObject。 PHP 脚本获取第一个对象并将其存储到文本文件中没问题,但另一个对象一直读取为 null,我不明白为什么。我对 PHP 和 Android 编程比较陌生,不确定我是否以正确的方式发送和接收数据。以下是我的相关 Android 应用程序代码 fragment :
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
{}
最佳答案
您的问题出在您的 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);
关于php - 将 JSON 数据从 Android 发送到 PHP 并写入文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15963039/
我有这个代码 var myChart = new FusionCharts("../themes/clean/charts/hbullet.swf", "myChartId", "400", "75
既然写入是立即进行的(复制到内核缓冲区并返回),那么使用 io_submit 进行写入有什么好处? 事实上,它 (aio/io_submit) 看起来更糟,因为您必须在堆上分配写入缓冲区并且不能使用基
我正在使用 mootool 的 Request.JSON 从 Twitter 检索推文。收到它后,我将写入目标 div 的 .innerHTML 属性。当我在本地将其作为文件进行测试时,即 file:
最终,我想将 Vertica DB 中的数据抓取到 Spark 中,训练机器学习模型,进行预测,并将这些预测存储到另一个 Vertica DB 中。 当前的问题是确定流程最后部分的瓶颈:将 Spark
我使用 WEKA 库编写了一个 Java 程序, 训练分类算法 使用经过训练的算法对未标记的数据集运行预测 将结果写入 .csv 文件 问题在于它当前写出离散分类结果(即算法猜测一行属于哪个类别)。我
背景 - 我正在考虑使用 clickonce 通过 clickonce(通过网站)部署 WinForms 应用程序。相对简单的应用程序的要素是: - 它是一个可执行文件和一个数据库文件(sqlite)
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
我正在读取 JSON 文件,取出值并进行一些更改。 基本上我向数组添加了一些值。之后我想将其写回到文件中。当我将 JSONArray 写回文件时,会被写入字符串而不是 JSONArray 对象。怎样才
我为两个应用程序使用嵌入式数据库,其中一个是服务器,另一个是客户端。客户端应用程序。可以向服务器端发送获取数据请求以检索数据并显示在表格(或其他)中。问题是这样的:如何将获取的数据保存(写入)到页面文
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
从问题得出问题:找到所有 result = new ArrayList(); for (int i = 2; i >(i%8) & 0x1) == 0) { result.add(i
由于某种原因,它没有写入 CSV。谁能明白为什么它不写吗? def main(): list_of_emails = read_email_csv() #read input file, cr
关闭。 这个问题是 not reproducible or was caused by typos 。它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能在这里出现,
我目前正在开发一个保存和加载程序,但我无法获得正确的结果。 编写程序: #include #include #define FILENAME "Save" #define COUNT 6 type
import java.io.*; public class Main2 { public static void main(String[] args) throws Exception {
我需要使用预定义位置字符串“Office”从所有日历中检索所有 iOS 事件,然后将结果写入 NSLog 和 UITextView。 到目前为止,这是我的代码: #import "ViewCo
我正在尝试将 BOOL 值写入 PFInstallation 中的列,但会不停地崩溃: - (IBAction)pushSwitch:(id)sender { NSUserDefaults *push
我以前在学校学过一些简单的数据库编程,但现在我正在尝试学习最佳实践,因为我正在编写更复杂的应用程序。写入 MySQL 数据库并不难,但我想知道让分布式应用程序写入 Amazon EC2 上的远程数据库
是否可以写回到ResourceBundle?目前我正在使用 ResourceBundle 来存储信息,在运行时使用以下内容读取信息 while(ResourceBundle.getBundle("bu
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我是一名优秀的程序员,十分优秀!