リモートMYSQLデータベースに接続し、JSONデータを使用して情報を取得するAndroidアプリを開発しています。私が問題を抱えているアプリの部分は、アプリケーション内のuserID
で検索し、ID、名、会社、位置など、関連するユーザー情報をデータベースから返します。MYSQLデータベースからAndroid AppにJSONデータを取得するのに役立つ
問題は、アプリケーション内のJSONデータを解析しています。私が受け取るエラーメッセージはSystem.err: org.json.JSONException: No value for id
です。
phpページにJSONデータが表示されます。 2つのJSONオブジェクトが出力されます:success
オブジェクトとresult
オブジェクトです。 success
オブジェクトは、アプリケーションによって正しく解析され、ifステートメントで何をすべきかをアプリに通知します。したがってif success == 1
の場合、アプリケーションはresult
オブジェクトを解析し、配列の各要素をアプリのString
の値に割り当てるコードブロックを実行します。 PHPページからの出力は次のとおりです。
{"success":1,"message":"UserID found!"}{"result":[{"id":"1100011","firstname":"Kevin","company":"company","position":"bartender"}]}
問題がresults
オブジェクトの値は、アプリケーションによって解析されていないです。私はその後、
D/UserID Lookup:: {"result":[{"id":"1100011","firstname":"Kevin","company":"company","position":"bartender"}]}
、しかし:私はコメントアウトした場合の行は上記のように、アプリからのログインがresults
アレイ用のアプリによって解析され、正しいデータを示し
<?php
define('HOST','localhost');
define('USER','********');
define('PASS','**********');
define('DB','**********');
if (!empty($_POST)){
if (empty($_POST['userID'])){
$response["success"] = 0;
$response["message"] = "Please enter a User ID";
die(json_encode($response));
}
$userID = mysql_escape_string($_POST['userID']);
$con = mysqli_connect(HOST,USER,PASS,DB);
$sql = "SELECT * FROM users WHERE id = $userID";
$res = mysqli_query($con,$sql);
$result = array();
while($row = mysqli_fetch_array($res)){
array_push($result, array(
'id'=>$row[0],
'firstname'=>$row[4],
'company'=>$row[6],
'position'=>$row[7],
)
);
}
if($result){
$response["success"] = 1;
$response["message"] = "UserID found!";
echo json_encode($response); // if I comment out this line, the result array gets parsed properly by the app.
echo json_encode(array("result"=>$result));
}else{
$response["success"] = 0;
$response["message"] = "UserID not found. Please try again.";
die(json_encode($response));
}
mysqli_close($con);
} else {
?>
<h1>Search by User ID:</h1>
<form action="searchbyuserid.php" method="post">
Enter the UserID of the receipient:<br />
<input type="text" name="userID" placeholder="User ID" />
<br /><br />
<input type="submit" value="Submit" />
</form>
<a href="register.php">Register</a>
<?php
}
?>
:ここではPHPのページですsuccess
が送信されていないため(明らかに)、W/System.err: org.json.JSONException: No value for success
のエラーが表示されます。だから、基本的に、私はきちんとsuccess
オブジェクトまたはresults
オブジェクト、どちらか一方だけを解析することができるよ
import android.app.ProgressDialog; ...
public class SearchByUserID extends ActionBarActivity implements View.OnClickListener {
// Buttons
private Button mSubmitButton, mBackButton;
// EditText Field
EditText enterUserID;
// Progress Dialog
private ProgressDialog pDialog;
// JSON parser class
JSONParser jsonParser = new JSONParser();
// Variable for holding URL:
private static final String LOGIN_URL = "http://www.***********/webservice/searchbyuserid.php";
//JSON element ids from response of php script:
private static final String TAG_SUCCESS = "success";
private static final String TAG_MESSAGE = "message";
private static final String TAG_USERID = "id";
private static final String TAG_FIRSTNAME = "firstname";
private static final String TAG_COMPANY = "company";
private static final String TAG_POSITION = "POSITION";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.search_by_user_id_layout);
mSubmitButton = (Button)findViewById(R.id.submit);
mBackButton = (Button)findViewById(R.id.back);
mSubmitButton.setOnClickListener(this);
mBackButton.setOnClickListener(this);
enterUserID = (EditText)findViewById(R.id.enterUserIdNumber);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.submit:
new SearchUserId().execute();
break;
case R.id.back:
finish();
break;
default:
break;
}
}
class SearchUserId extends AsyncTask<String, String, String> {
// Show progress dialog
boolean failure = false;
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(SearchByUserID.this);
pDialog.setMessage("Searching User ID...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}
@Override
protected String doInBackground(String... args) {
// Check for success tag
int success;
String userID = enterUserID.getText().toString();
try {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("userID", userID));
Log.d("UserID:", userID);
Log.d("request!", "starting");
JSONObject json = jsonParser.makeHttpRequest(LOGIN_URL, "POST", params);
// check your log for json response
Log.d("UserID Lookup:", json.toString());
// json success tag
success = json.getInt(TAG_SUCCESS);
if (success == 1) {
JSONObject json2 = jsonParser.makeHttpRequest(LOGIN_URL, "POST", params);
String userid = json2.getString(TAG_USERID);
String firstName = json2.getString(TAG_FIRSTNAME);
String company = json2.getString(TAG_COMPANY);
String position = json2.getString(TAG_POSITION);
Log.d("User ID Found!", json.toString());
Log.d("userid:", userid);
Log.d("firstName:", firstName);
Log.d("company:", company);
Log.d("position:", position);
Intent i = new Intent(SearchByUserID.this, HomeActivity.class);
finish();
startActivity(i);
return json.getString(TAG_MESSAGE);
}else{
Log.d("User ID not found.", json.getString(TAG_MESSAGE));
return json.getString(TAG_MESSAGE);
}
} catch (JSONException e) {
e.printStackTrace();
}
return null;
}
/**
* After completing background task Dismiss the progress dialog
* **/
protected void onPostExecute(String file_url) {
// dismiss the dialog once product deleted
pDialog.dismiss();
if (file_url != null){
Toast.makeText(SearchByUserID.this, file_url, Toast.LENGTH_LONG).show();
}
}
}
}
:
は、ここに私のアンドロイドコードです。両方を解析しようとすると、no value for id
のJSONエラーが発生します。
これは有効なJSONではありません。 2つのJSONObjectを出力しています。応答に配列を追加するだけで、 'echo json_encode()'を一度呼び出すようにしてください。結果は次のようになります。http://pastebin.com/4QxBvyZF代わりに、2つのJSONObjectを使用してJSONArrayにラップすることもできます。結果は次のようになります。http://pastebin.com/0JHQYGqh –
**警告**:mysqliを使用する場合は、[パラメータ化されたクエリ](http://php.net/manual/en/mysqli.quickstart.prepared-statements.php)と['bind_param'](http: /php.net/manual/en/mysqli-stmt.bind-param.php)を使用してユーザーデータをクエリに追加します。 **重大な[SQLインジェクションのバグ](http://bobby-tables.com/)を作成したため、文字列の補間または連結を使用してこれを実行しないでください。 ** '$ _POST'や' $ _GET'データを直接クエリに入れないでください。誰かがあなたのミスを悪用しようとすると、非常に危険です。 – tadman
あなたのコードの途中で 'die'コールに渋滞するのも悪いフォームです。エラーがある場合は、レスポンスコードを設定して何かをレンダリングし、通常のクリーンアップを行います。 – tadman