标签: php android json parsing
我想在php中将结果进程发送到android然后我想在模拟器中显示结果..
但我无法将结果从php发送到android cz,结果是数组2Dimension
1 2 3 4 5 6 7 8 9 10 11 12
如何在android中解析结果?
答案 0 :(得分:2)
我会在PHP中使用json_encode(),然后在Android中对其进行解码。
答案 1 :(得分:0)
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数组:2D arrays in JSON getting converted into a 1D array of objects