我想将 php 中的结果过程发送到 android 然后我想在模拟器中显示结果..
但我不能将结果从 php 发送到 android cz 结果是一个数组 2Dimension
1 2 3
4 5 6
7 8 9
10 11 12
如何在android中解析结果?
我会在 PHP 中使用json_encode(),然后在 Android 中对其进行解码。
JSON 是一个好方法,这是一个例子 https://stackoverflow.com/a/4692780/719212 或http://fahmirahman.wordpress.com/2011/04/21/connection-between-php-server-and -android-client-using-http-and-json/
对于 2D 数组:JSON 中的 2D 数组被转换为 1D 对象数组