gpt4 book ai didi

php - 从android应用程序插入mysql数据

转载 作者:行者123 更新时间:2023-11-30 22:50:48 25 4
gpt4 key购买 nike

我正在尝试从我的 android 应用程序将数据插入 mysql 数据库。我有这样的 php 文件代码:

<?php

// Connection data
$host = 'xxxx';;
$uname = 'xxx';
$pwd = 'xxx';
$db = 'xxxx';


$con = mysql_connect($host,$uname,$pwd) or die("connection failed");
mysql_select_db($db,$con) or die("db selection failed");

$nombre=$_REQUEST['nombre'];
$asunto=$_REQUEST['asunto'];
$comentario=$_REQUEST['comentario'];

$flag['code']=0;

if($r=mysql_query("insert into comentarios (nombre, asunto, comentario) values('$nombre','$asunto','$comentario') ",$con))
{
$flag['code']=1;
echo"hi";
}

print(json_encode($flag));
mysql_close($con);
?>

在我的 android 应用程序中,我使用了这段代码:

   class CreateNewComment extends AsyncTask<String, String, String> {

/**
* Before starting background thread Show Progress Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(MyActivity.this);
pDialog.setMessage("Enviando comentario..");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}

/**
* Creating product
* */
protected String doInBackground(String... args) {
String nombre = inputnombre.getText().toString();
String asunto = inputasunto.getText().toString();
String comentario = inputcomentario.getText().toString();

// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("nombre", nombre));
params.add(new BasicNameValuePair("asunto", asunto));
params.add(new BasicNameValuePair("comentario", comentario));

// getting JSON Object
// Note that create product url accepts POST method
JSONObject json = jsonParser.makeHttpRequest(url_create_product,
"POST", params);

// check log cat fro response
Log.d("Create Response", json.toString());

// check for success tag
try {
int success = json.getInt(TAG_SUCCESS);

if (success == 1) {
// successfully created product
Intent i = new Intent(getApplicationContext(), Comunidad.class);
startActivity(i);

// closing this screen
finish();
} else {
// failed to create product
}
} 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 done
pDialog.dismiss();
}

}
}

我总是收到错误“无效的 IP 地址”,并且在控制台中收到 android.os.NetworkOnMainThreadException 错误。谢谢。

最佳答案

首先不要使用mysql_* api,它已经过时了,请使用mysqliPDO。对于 PHP 脚本,您没有向客户端发送有效的 json 响应。

header('Content-type: application/json'); //put header
print(json_encode($flag));
mysql_close($con);

Android 使用AsyncTask保持主 UI 线程空闲。

您可以使用类似 Volley 的库 让您的生活更轻松。它将使网络调用变得非常容易

更新

带有 PDO 的 PHP

// Connection data
$host = 'xxxx';;
$uname = 'xxx';
$pwd = 'xxx';
$db = 'xxxx';

//Connect to DB using PDO
$db = new PDO('mysql:host='.$host.';dbname='.$db.';charset=utf8', $uname, $pwd);

$nombre = $_REQUEST['nombre'];
$asunto = $_REQUEST['asunto'];
$comentario = $_REQUEST['comentario'];

$flag['code']=0;

//Insert into DB
$stmt = $db->prepare("INSERT INTO comentarios
(nombre, asunto, comentario)
VALUES (:nombre, :asunto, :comentario)");
$stmt->execute(array(
':nombre' => $nombre,
':asunto' => $asunto,
':comentario' => $comentario
));

//Check for affected rows
if($stmt->rowCount() > 0) {
$flag['code']=1;
}

header('Content-type: application/json'); //put header for json
print(json_encode($flag));

关于php - 从android应用程序插入mysql数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28190026/

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