Php 通过json在数据库中插入行无效

Php 通过json在数据库中插入行无效,php,android,mysql,json,Php,Android,Mysql,Json,我遵循了本教程,但有些东西不起作用,尽管我认为我已经一步一步地遵循了它。不起作用的是在数据库中写入一些行。你能给我一些提示吗?非常感谢您抽出时间。 以下是日志: 02-22 05:10:45.262: E/AndroidRuntime(1202): FATAL EXCEPTION: AsyncTask #2 02-22 05:10:45.262: E/AndroidRuntime(1202): Process: com.example.test, PID: 1202 02-22 05:10:45

我遵循了本教程,但有些东西不起作用,尽管我认为我已经一步一步地遵循了它。不起作用的是在数据库中写入一些行。你能给我一些提示吗?非常感谢您抽出时间。 以下是日志:

02-22 05:10:45.262: E/AndroidRuntime(1202): FATAL EXCEPTION: AsyncTask #2
02-22 05:10:45.262: E/AndroidRuntime(1202): Process: com.example.test, PID: 1202
02-22 05:10:45.262: E/AndroidRuntime(1202): java.lang.RuntimeException: An error occured while executing     doInBackground()
02-22 05:10:45.262: E/AndroidRuntime(1202):     at android.os.AsyncTask$3.done(AsyncTask.java:300)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:355)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.util.concurrent.FutureTask.setException(FutureTask.java:222)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.util.concurrent.FutureTask.run(FutureTask.java:242)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:231)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.lang.Thread.run(Thread.java:841)
02-22 05:10:45.262: E/AndroidRuntime(1202): Caused by: java.lang.NullPointerException
02-22 05:10:45.262: E/AndroidRuntime(1202):     at com.example.test.MainActivity$CreateNewRow.doInBackground(MainActivity.java:134)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at com.example.test.MainActivity$CreateNewRow.doInBackground(MainActivity.java:1)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at android.os.AsyncTask$2.call(AsyncTask.java:288)
02-22 05:10:45.262: E/AndroidRuntime(1202):     at java.util.concurrent.FutureTask.run(FutureTask.java:237)
02-22 05:10:45.262: E/AndroidRuntime(1202):     ... 4 more
这是我的php:
 /*
 * Following code will create a new product row
  * All product details are read from HTTP Post Request
  */

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

 // check for required fields
if (isset($_POST['nume']) && isset($_POST['masa']) && isset($_POST['ip'])) {

$nume = $_POST['nume'];
$masa = $_POST['masa'];
$ip = $_POST['ip'];

// 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 test2(null,nume, masa, ip) VALUES(null,'$nume', '$masa', '$ip')");

// 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);
}
?>
这是我的解析器:

package com.example.test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URLEncodedUtils;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

public class JSONParser {

    static InputStream is = null;
    static JSONObject jArr=null;
    static String json = "";

    // function get json from url
    // by making HTTP POST or GET method
    public static JSONObject makeHttpRequest(String url, String method,
            List<NameValuePair> params) {

        // Making HTTP request
        try {
            // check for request method
            if(method == "POST"){
                // request method is POST
                // defaultHttpClient
                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(url);
                httpPost.setEntity(new UrlEncodedFormEntity(params,"utf-8"));

                HttpResponse httpResponse = httpClient.execute(httpPost);
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();

            }else if(method == "GET"){
                // request method is GET
                DefaultHttpClient httpClient = new DefaultHttpClient();
                String paramString = URLEncodedUtils.format(params, "utf-8");
                url += "?" + paramString;
                HttpGet httpGet = new HttpGet(url);

                HttpResponse httpResponse = httpClient.execute(httpGet);
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();
            }           

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try parse the string to a JSON object
        try {
            jArr = new JSONObject(json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String (Array)
        return jArr;

    }

}
package com.example.test;
导入java.io.BufferedReader;
导入java.io.IOException;
导入java.io.InputStream;
导入java.io.InputStreamReader;
导入java.io.UnsupportedEncodingException;
导入java.util.ArrayList;
导入java.util.List;
导入org.apache.http.HttpEntity;
导入org.apache.http.HttpResponse;
导入org.apache.http.NameValuePair;
导入org.apache.http.client.ClientProtocolException;
导入org.apache.http.client.entity.UrlEncodedFormEntity;
导入org.apache.http.client.methods.HttpGet;
导入org.apache.http.client.methods.HttpPost;
导入org.apache.http.client.utils.URLEncodedUtils;
导入org.apache.http.impl.client.DefaultHttpClient;
导入org.json.JSONException;
导入org.json.JSONObject;
导入android.util.Log;
公共类JSONParser{
静态InputStream为空;
静态JSONObject jArr=null;
静态字符串json=“”;
//函数从url获取json
//通过使用HTTP POST或GET方法
公共静态JSONObject makeHttpRequest(字符串url、字符串方法、,
列表参数){
//发出HTTP请求
试一试{
//检查请求方法
如果(方法==“POST”){
//请求方法为POST
//defaultHttpClient
DefaultHttpClient httpClient=新的DefaultHttpClient();
HttpPost HttpPost=新的HttpPost(url);
setEntity(新的UrlEncodedFormEntity(参数,“utf-8”);
HttpResponse HttpResponse=httpClient.execute(httpPost);
HttpEntity HttpEntity=httpResponse.getEntity();
is=httpEntity.getContent();
}else if(方法==“GET”){
//请求方法是GET
DefaultHttpClient httpClient=新的DefaultHttpClient();
String paramString=URLEncodedUtils.format(params,“utf-8”);
url+=“?”+参数字符串;
HttpGet HttpGet=新的HttpGet(url);
HttpResponse HttpResponse=httpClient.execute(httpGet);
HttpEntity HttpEntity=httpResponse.getEntity();
is=httpEntity.getContent();
}           
}捕获(不支持的编码异常e){
e、 printStackTrace();
}捕获(客户端协议例外e){
e、 printStackTrace();
}捕获(IOE异常){
e、 printStackTrace();
}
试一试{
BufferedReader reader=新的BufferedReader(新的InputStreamReader(
is,“iso-8859-1”),8);
StringBuilder sb=新的StringBuilder();
字符串行=null;
而((line=reader.readLine())!=null){
sb.追加(第+行“\n”);
}
is.close();
json=sb.toString();
}捕获(例外e){
Log.e(“缓冲区错误”,“错误转换结果”+e.toString());
}
//尝试将字符串解析为JSON对象
试一试{
jArr=新的JSONObject(json);
}捕获(JSONException e){
Log.e(“JSON解析器”,“错误解析数据”+e.toString());
}
//返回JSON字符串(数组)
返回jArr;
}
}
这是我的主要活动:

package com.example.test;

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Enumeration;
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.os.AsyncTask;
import android.os.Bundle;
import android.text.format.Formatter;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
//import java.util.logging.Formatter;


public class MainActivity extends Activity {

    // Progress Dialog
    private ProgressDialog pDialog;

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

    // url to create new product
    private static String url_create_row = "http://localhost/android_connect/create_row.php";

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

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Edit Text
        inputName = (EditText) findViewById(R.id.inputName);
        inputDesc = (EditText) findViewById(R.id.inputDesc);
        inputDesc.setText(getLocalIpAddress().toString());

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

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

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

    }

    public String getLocalIpAddress() {
        try {
            for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {
                NetworkInterface intf = en.nextElement();
                for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {
                    InetAddress inetAddress = enumIpAddr.nextElement();
                    if (!inetAddress.isLoopbackAddress()) {
                        String ip = Formatter.formatIpAddress(inetAddress.hashCode());
                        Log.i(TAG_SUCCESS, "****IP="+ip);
                        return ip;

                    }
                }
            }
        } catch (SocketException ex) {
            System.out.println("lala"+ex.toString());
        }
        return null;
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
    /**
     * Background Async Task to Create new product
     * */
    class CreateNewRow extends AsyncTask<String, String, String> {

        /**
         * Before starting background thread Show Progress Dialog
         * */
       /* @Override
        protected void onPreExecute() {
            super.onPreExecute();

            pDialog.setMessage("Creating Row..");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(true);
            pDialog.show();
            Log.d(TAG_SUCCESS, "SUCCESSSSSSSSS!");
        }*/

        /**
         * Creating product
         * */
        protected String doInBackground(String... args) {

            String nume = inputName.getText().toString();
            String ip = inputDesc.getText().toString();
            String masa = "1";
            // Building Parameters
            List <NameValuePair> params = new ArrayList<NameValuePair>();

            params.add(new BasicNameValuePair("nume", nume));
            params.add(new BasicNameValuePair("masa", masa));
            params.add(new BasicNameValuePair("IP", ip));

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

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

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

                if (success == 1) {
                    // successfully created product
                    Toast.makeText(MainActivity.this, "s-a adaugat ceva in baza de date!", Toast.LENGTH_LONG).show();
                    // closing this screen
                    finish();
                } else {
                    // failed to create product
                    Log.d(TAG_SUCCESS, "Nu a mers nimic");
                }
            } 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();
        }*/


    }

}
package com.example.test;
导入java.net.InetAddress;
导入java.net.NetworkInterface;
导入java.net.SocketException;
导入java.util.ArrayList;
导入java.util.Enumeration;
导入java.util.List;
导入org.apache.http.NameValuePair;
导入org.apache.http.message.BasicNameValuePair;
导入org.json.JSONException;
导入org.json.JSONObject;
导入android.app.Activity;
导入android.app.ProgressDialog;
导入android.os.AsyncTask;
导入android.os.Bundle;
导入android.text.format.Formatter;
导入android.util.Log;
导入android.view.Menu;
导入android.view.view;
导入android.widget.Button;
导入android.widget.EditText;
导入android.widget.Toast;
//导入java.util.logging.Formatter;
公共类MainActivity扩展了活动{
//进度对话框
私人对话;
JSONParser JSONParser=新的JSONParser();
编辑文本输入名;
编辑文本输入描述;
//创建新产品的url
私有静态字符串url\u创建\u行=”http://localhost/android_connect/create_row.php";
//JSON节点名称
私有静态最终字符串标记_SUCCESS=“SUCCESS”;
@凌驾
创建时受保护的void(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//编辑文本
inputName=(EditText)findViewById(R.id.inputName);
inputDesc=(EditText)findViewById(R.id.inputDesc);
inputDesc.setText(getLocalIpAddress().toString());
//创建按钮
按钮btnCreateProduct=(按钮)findViewById(R.id.btnAdaugare);
//按钮点击事件
btnCreateProduct.setOnClickListener(新视图.OnClickListener(){
@凌驾
公共void onClick(视图){
//在后台线程中创建新产品
新建CreateNewRow().execute();
}
});
}
公共字符串getLocalIpAddress(){
试一试{
对于(枚举en=NetworkInterface.getNetworkInterfaces();en.hasMoreElements();){
NetworkInterface intf=en.nextElement();
对于(枚举Enumeration EnumipAddress=intf.getInetAddresses();EnumipAddress.hasMoreElements();){
InetAddress InetAddress=enumIpAddr.nextElement();
如果(!inetAddress.isLoopbackAddress()){
字符串ip=形式
params.add(new BasicNameValuePair("IP", ip));
isset($_POST['ip'])
params.add(new BasicNameValuePair("ip", ip));
protected JSONObject doInBackground(String... args) {

    String nume = inputName.getText().toString();
    String ip = inputDesc.getText().toString();
    String masa = "1";
    // Building Parameters
    List <NameValuePair> params = new ArrayList<NameValuePair>();

    params.add(new BasicNameValuePair("nume", nume));
    params.add(new BasicNameValuePair("masa", masa));
    params.add(new BasicNameValuePair("IP", ip));

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

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


    return json;
}

protected void onPostExecute(JSONObject json) {
    if(json != null){
    try {
        int success = json.getInt(TAG_SUCCESS);
         if (success == 1) {
            // successfully created product
         Toast.makeText(MainActivity.this, "s-a adaugat ceva in baza de date!",
                                            Toast.LENGTH_LONG).show();
            // closing this screen
            finish();
        } else {
            // failed to create product
            Log.d(TAG_SUCCESS, "Nu a mers nimic");
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }
   }
}