両方のフィールドのデータ型が double である mysql データベース テーブルから緯度と経度の値を取得しています。php ファイルでは、これらの値を配列に入れて、json への応答として送信しています。私のlogcatはこれらの値が正しいことを示していますが、それはまた
「org.json.JSONArray は json オブジェクトに変換できません」
緯度と経度から必要な地図上に結果が表示されませんが、地図上に他の場所があります。これは、phpから値を取得する私のJavaコード部分です。では、この変換を処理して、これらの値を php からのものとしてそのまま取得して、データベースに保存されている場所を確認するにはどうすればよいでしょうか。
JSONObject json_user1 = new JSONObject(responseFromPHP);
JSONObject json_user2 = json_user1.getJSONObject("latlong");
double latitude=Double.parseDouble((json_user2.getString(TAG_LATITUDE)));
double longitude=Double.parseDouble((json_user2.getString(TAG_LONGITUDE)));
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
.getMap();
Marker Lahore = map.addMarker(new MarkerOptions().position(
new LatLng(latitude, longitude))
.title("Lahore"));
// Move the camera instantly to hamburg with a zoom of 15.
map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(latitude, longitude), 5));
// Zoom in, animating the camera.
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
LogCAT:
10-10 22:49:47.655: D/Show lat n long:(30670): {"success":1,"latlongs":[{"longitude":"74.3436","latitude":"31.5497"}]}
10-10 22:49:47.655: W/System.err(30670): org.json.JSONException: Value [{"longitude":"74.3436","latitude":"31.5497"}] at latlongs of type org.json.JSONArray cannot be converted to JSONObject
10-10 22:49:47.660: W/System.err(30670): at org.json.JSON.typeMismatch(JSON.java:100)
10-10 22:49:47.660: W/System.err(30670): at org.json.JSONObject.getJSONObject(JSONObject.java:573)
10-10 22:49:47.660: W/System.err(30670): at com.DRMS.disas_recovery.MainActivity$LoadMap.onPostExecute(MainActivity.java:80)
10-10 22:49:47.660: W/System.err(30670): at com.DRMS.disas_recovery.MainActivity$LoadMap.onPostExecute(MainActivity.java:1)
10-10 22:49:47.665: W/System.err(30670): at android.os.Handler.dispatchMessage(Handler.java:99)
PHP コード:
<?php
$response = array();
require_once 'include/DB_Functions.php';
$db = new DB_Functions();
$result = mysql_query("SELECT latitude, longitude FROM tbl_map WHERE map_id=1") or die(mysql_error());
if (mysql_num_rows($result) > 0) {
$response["latlongs"] = array();
while ($row = mysql_fetch_array($result)) {
$latlong = array();
$latlong["latitude"] = $row["latitude"];
$latlong["longitude"] = $row["longitude"];
array_push($response["latlongs"], $latlong);
}
$response["success"] = 1;
// echoing JSON response
echo json_encode($response);
} else {
// no products found
$response["success"] = 0;
$response["message"] = "Error nothing found";
// echo no users JSON
echo json_encode($response);
}
?>