gpt4 book ai didi

java - 从 mySql 数据库调用时,JSON 返回 NullPointerException

转载 作者:太空宇宙 更新时间:2023-11-03 11:53:47 25 4
gpt4 key购买 nike

我尝试使用本教程将我的 android 应用程序连接到在线 mySQL 数据库:http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/但我收到一条错误消息

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String org.json.JSONObject.toString()' on a null object reference

在我尝试调用 json.ToString()doInBackground 部分:

package com.example.androidhive;

import java.util.ArrayList;
import java.util.List;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

public class NewProductActivity extends Activity {

// Progress Dialog
private ProgressDialog pDialog;

JSONParser jsonParser = new JSONParser();
EditText inputName;
EditText inputPrice;
EditText inputDesc;

// url to create new product
private static String url_create_product = "http://lewspage.hostei.com/scripts/create_product.php";

// JSON Node names
private static final String TAG_SUCCESS = "success";

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.add_product);

// Edit Text
inputName = (EditText) findViewById(R.id.inputName);
inputPrice = (EditText) findViewById(R.id.inputPrice);
inputDesc = (EditText) findViewById(R.id.inputDesc);

// Create button
Button btnCreateProduct = (Button) findViewById(R.id.btnCreateProduct);

// button click event
btnCreateProduct.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View view) {
// creating new product in background thread
new CreateNewProduct().execute();
}
});
}

/**
* Background Async Task to Create new product
* */
class CreateNewProduct extends AsyncTask<String, String, String> {

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

/**
* Creating product
* */
protected String doInBackground(String... args) {
String name = inputName.getText().toString();
String price = inputPrice.getText().toString();
String description = inputDesc.getText().toString();

// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("name", name));
params.add(new BasicNameValuePair("price", price));
params.add(new BasicNameValuePair("description", description));

// 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()); //Crashes here

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

if (success == 1) {
// successfully created product
Intent i = new Intent(getApplicationContext(), AllProductsActivity.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();
}

}
}

http://lewspage.hostei.com/scripts/create_product.php”处的PHP脚本如下:

<?php

/*
* Following code will create a new product row
* All product details are read from HTTP Post Request
*/
require_once('db_connect.php');

$host='mysql10.000webhost.com';
$user='myusername';
$pass='mypassword';


if ( !mysql_connect($host,$user,$pass) ||
!mysql_select_db('a7390942_test') )
echo 'ERROR';

else
echo 'OKKKK';

// array for JSON response
$response = array();

// check for required fields
if (isset($_POST['name']) && isset($_POST['price']) && isset($_POST['description'])) {

$name = $_POST['name'];
$price = $_POST['price'];
$description = $_POST['description'];

// include db connect class
require_once __DIR__ . '/db_connect.php';

// connecting to db
$db = new DB_CONNECT();

// mysql inserting a new row
$result = mysql_query("INSERT INTO products(name, price, description) VALUES('$name', '$price', '$description')");

// check if row inserted or not
if ($result) {
// successfully inserted into database
$response["success"] = 1;
$response["message"] = "Product successfully created.";

// echoing JSON response
echo json_encode($response);
} else {
// failed to insert row
$response["success"] = 0;
$response["message"] = "Oops! An error occurred.";

// echoing JSON response
echo json_encode($response);
}
} else {
// required field is missing
$response["success"] = 0;
$response["message"] = "Required field(s) is missing";

// echoing JSON response
echo json_encode($response);
}
?>

基本上,我使用 000wehost 来托管 mysql 数据库和 php 脚本。我尝试自己运行 create_product 脚本,它连接到数据库没有问题。我已经确保我的数据库包含字段名称、价格、描述。但是,我不知道为什么它似乎没有正确填充 JSON 对象。

谢谢

最佳答案

当我访问您提供的 url 时,它不是一个有效的字符串,因为您的 'db_connect.php' 脚本没有正确打开。

?php /* * All database connection variables */ define('DB_USER', "replace"); // db user define('DB_PASSWORD', "replace"); // db password (mention your db password here) define('DB_DATABASE', "replace"); // database name define('DB_SERVER', "replace"); // db server ?>OKKKK{"success":0,"message":"Required field(s) is missing"}

这是来自 url 的响应。我假设下面的代码是您的 db_connect.php 脚本

?php /* * All database connection variables */ define('DB_USER', "replace"); // db user define('DB_PASSWORD', "replace"); // db password (mention your db password here) define('DB_DATABASE', "replace"); // database name define('DB_SERVER', "replace");?>

您的 php 开始标记中缺少 <。另外,考虑删除一些可能会阻碍您的 json 的 echo 函数。

我会为你分解它。您可能会注意到 OKKKK,因为数据库已根据您的脚本成功连接:

if ( !mysql_connect($host,$user,$pass) ||
!mysql_select_db('a7390942_test') )
echo 'ERROR';

else
echo 'OKKKK';

你需要删除那些回显,因为它会使你的网页响应不符合 JSON 标准。接下来,您的 db_connect 脚本可能没有正确打开,从而暴露了您所有的数据库定义。

注意:由于您要插入带有用户输入的表,因此建议对 mysqli 使用 prepare 语句。如果没有 prepare 语句,您的 sql 将是可注入(inject)的。

给您的建议是,由于您使用的是免费的虚拟主机提供商,因此您无法确定他们是否在您的回复中附加了任何文本。你可以将你的 json 文本包含在一个 html 元素中并给它一个类。在您的 android 中,获取所有 html 响应,转换为字符串,然后在您的类(class)之后和关闭之前转换为子字符串文本。

例子:

<div class="jsonTxt">{"success":"1"}</div>

所以我会读取后面的字符串,然后从子字符串文本中读取的索引,然后删除它后面的任何内容。

关于java - 从 mySql 数据库调用时,JSON 返回 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34280518/

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