gpt4 book ai didi

php - 使用 Android Studio、MySQL 和 php 文件,在何处以及如何保存 JSON 响应类型

转载 作者:行者123 更新时间:2023-11-29 21:52:17 26 4
gpt4 key购买 nike

我正在从以下教程中学习。 http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/ WAMP PHP Directory我看到了这个目录概述图像,我还注意到第 3.3 节 JSON 响应类型中的一些 JSON 响应。我知道它们是 php 代码中的回显,具体取决于用户注册和登录是否成功。但我不知道如何以及在哪里保存此类 JSON 文件。除了这部分之外,该教程非常详细。我还没有处理过 JSON API 和其他对象。

最佳答案

本教程并不表明您应该使用 JSON 文件,而是表明您在将响应形成为一种数据交换格式语言时应该使用 JSON 作为语言构造。

这还表明应用程序堆栈(范围的两端)应该使用 JSON 相互通信。

正如本文描述的使用数据库一样,您将与数据库进行比较以进行身份​​验证并向应用程序提供 JSON 响应。这就是 PHP 方面可能的样子。

//assume data passed from app is in JSON format.
$variables = isset($_POST['variables']) : json_decode($_POST['variables']) : false;

//given the above, assume we have 2 keys, username and password.
// as we've applied json_decode above, we can now treat the string as an array with keys to access our values.

//use prepared statements when accepting user input!
$stmt = $mysqli->prepare('select id from user where user = ? and password = MD5(?)');
$stmt->bind_param('ss', $variables['username'], $variables['password']);
$stmt->execute();
$stmt->store_result();

//now we can count the returned rows and then return our response.

$resp = array();
if(count($stmt->num_rows) > 0){
$resp['msg'] = 'Successfully logged in.';
$resp['status'] = 1;
} else {
$resp['msg'] = 'Failed to login! Username or password or both are incorrect.';
$resp['status'] = 0;
}

return json_encode($resp);

现在,在您的 Android 应用程序中,您可以解码此 json 结果并检查状态,然后显示消息。

粗略的草图可能如下所示:

DefaultHttpClient   httpclient = new DefaultHttpClient(new BasicHttpParams());
HttpPost httppost = new HttpPost(http://path.to.your.site.tld/login-endpoint);
//we will need this so we can send JSON to the server.
httppost.setHeader("Content-type", "application/json");

//other stuff to build out query and send username and password
//not shown for brevity...

InputStream inputStream = null;
String result = null;
try {
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();

inputStream = entity.getContent();
// json is UTF-8 by default
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"), 8);
StringBuilder sb = new StringBuilder();

String line = null;
while ((line = reader.readLine()) != null)
{
sb.append(line + "\n");
}
result = sb.toString();
} catch (Exception e) {
// Oops
}
finally {
try{if(inputStream != null)inputStream.close();}catch(Exception squish){}
}

Example copy + pasted from this answer: https://stackoverflow.com/questions/9605913/how-to-parse-json-in-android

最后,JSON 对象的表示形式保存在 result 中(只要没有发生故障)我们可以解析结果并检查服务器应该响应的键的值,即消息和状态。

JSONArray jArray = jObject.getJSONArray(result);
for (int i=0; i < jArray.length(); i++)
{
try {
JSONObject oneObject = jArray.getJSONObject(i);
// Pulling items from the array
String msg = oneObject.getString("msg");
String status = oneObject.getString("status");
} catch (JSONException e) {
// Oops
}
}

现在,您可以根据身份验证后服务器提供的消息和状态响应执行任何您想要的操作。

祝你好运。

关于php - 使用 Android Studio、MySQL 和 php 文件,在何处以及如何保存 JSON 响应类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33513421/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com