我使用以下代码使用PHP访问我的数据库
<?php
$host = "localhost";
$user = "**MASKED**";
$password = "**MASKED**";
$database = "parkfinder_zxq_coordinates";
$connection = mysql_connect($host, $user, $password) or die("couldn t connect to server");
$db = mysql_select_db($database, $connection) or die("couldn t select database.");
//$request_parked = $_REQUEST[ parked ];
$request_long = $_REQUEST[ longtitude ];
$request_lat = $_REQUEST[ latitude ];
$q = mysql_query("SELECT * FROM Coordinates");
while ($e = mysql_fetch_assoc($q))
$output[] = $e;
print (json_encode($output));
mysql_close();
?>
当我在Java中使用以下代码阅读响应时:
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://parkfinder.zxq.net/default.php");
httppost.setEntity(new UrlEncodedFormEntity(coordinatesToSend));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
String result = EntityUtils.toString(entity);
Log.d("RESULT", result);
JSONObject json_data = new JSONObject(result);
我得到的结果是:
2[{"longtitude":"32.32","latitude":"33.12"}]
which causes the JSONObject to throw an exception as this is not a valid JSON data, it starts with 2 Does anyone know how to fix it? both codes are taken from tutorials online, which didn t seem to have this kind of problem. the problem happened on two different MySQL servers..
提前感谢