テーブル内のすべての行を選択する php ファイルがあります。結果のコンテンツを www/ ディレクトリのファイルに保存したいので、その name.json ファイルを解析し、jackson ライブラリを使用してそのコンテンツを Android に表示できます。ここに私のphpファイルがあります:
<?php header('Content-type: application/json');
/*
* Following code will list all the surveys
*/
// array for JSON response
$response = array();
// include db connect class
require_once __DIR__ . '/db_connect.php';
// connecting to db
$db = new DB_CONNECT();
// get all surveys from surveys table
$result = mysql_query("SELECT * FROM surveys") or die(mysql_error());
// check for empty result
if (mysql_num_rows($result) > 0) {
// looping through all results
// surveys node
$response["surveys"] = array();
while ($row = mysql_fetch_array($result)) {
// temp user array
$survey = array();
$survey["id_survey"] = $row["id_survey"];
$survey["question_survey"] = $row["question_survey"];
$survey["answer_yes"] = $row["answer_yes"];
$survey["answer_no"] = $row["answer_no"];
// push single survey into final response array
array_push($response["surveys"], $survey);
}
// success
$response["success"] = 1;
// echoing JSON response
echo json_encode($response);
} else {
// no surveys found
$response["success"] = 0;
$response["message"] = "No surveys found";
// echo no users JSON
echo json_encode($response);
}
?>
つまり、phpファイル=>実行=>結果をファイルに保存=>そのファイルを解析してAndroidに表示します。