解析数据org.json.JSONException时出错,已尝试其他帖子


Error parsing data org.json.JSONException , already try other post

我知道有几个帖子有同样的错误,但我已经证明了解决方案,仍然有相同的错误

Log.txt:

03-18 18:32:33.082: D/gralloc_goldfish(974): Emulator without GPU emulation detected.
03-18 18:33:21.706: E/JSON Parser(974): Error parsing data org.json.JSONException: End of input at character 0 of 
03-18 18:33:21.706: W/dalvikvm(974): threadid=11: thread exiting with uncaught exception (group=0x40a71930)
03-18 18:33:21.726: E/AndroidRuntime(974): FATAL EXCEPTION: AsyncTask #1
03-18 18:33:21.726: E/AndroidRuntime(974): java.lang.RuntimeException: An error occured while executing doInBackground()
03-18 18:33:21.726: E/AndroidRuntime(974):  at android.os.AsyncTask$3.done(AsyncTask.java:299)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:352)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.util.concurrent.FutureTask.setException(FutureTask.java:219)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.util.concurrent.FutureTask.run(FutureTask.java:239)
03-18 18:33:21.726: E/AndroidRuntime(974):  at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:230)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.lang.Thread.run(Thread.java:856)
03-18 18:33:21.726: E/AndroidRuntime(974): Caused by: java.lang.NullPointerException
03-18 18:33:21.726: E/AndroidRuntime(974):  at com.example.cambio_moneda.LoadAllProducts.doInBackground(LoadAllProducts.java:25)
03-18 18:33:21.726: E/AndroidRuntime(974):  at com.example.cambio_moneda.LoadAllProducts.doInBackground(LoadAllProducts.java:1)
03-18 18:33:21.726: E/AndroidRuntime(974):  at android.os.AsyncTask$2.call(AsyncTask.java:287)
03-18 18:33:21.726: E/AndroidRuntime(974):  at java.util.concurrent.FutureTask.run(FutureTask.java:234)
03-18 18:33:21.726: E/AndroidRuntime(974):  ... 4 more
03-18 18:33:21.786: D/dalvikvm(974): GC_CONCURRENT freed 149K, 10% free 2622K/2896K, paused 4ms+5ms, total 43ms

主要活动.java

package com.example.cambio_moneda;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends Activity {
    JSONParser jParser = new JSONParser();
    private TextView tvCambio;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        tvCambio = (TextView) findViewById(R.id.tvCambio);
    }
    @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;
    }
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
    public void consultarCambio(View v){
        new LoadAllProducts().execute();
    }
}

LoadAllProducts.java

package com.example.cambio_moneda;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.NameValuePair;
import org.json.JSONObject;
import android.os.AsyncTask;
import android.util.Log;
class LoadAllProducts  extends AsyncTask<String, String, String>{
    JSONParser jsonParser = new JSONParser();
    private static String url_all_products = "http://10.10.1.40/cordova/Servidor/cambio_moneda_app/index.php";

    @Override
    protected void onPreExecute(){
    }
    @Override
    protected String doInBackground(String... params) {
        List<NameValuePair> params1 = new ArrayList<NameValuePair>();
        JSONObject json = jsonParser.makeHttpRequest(url_all_products,"POST",params1);
        Log.d("All Products: ", json.toString());
        return null;
    }
}

JSONParser.java

package com.example.cambio_moneda;
import java.io.InputStream;
import java.util.List;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
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 JObj = null;
    static String json = "";
    // Constructor
    public JSONParser() {
    }
    public JSONObject makeHttpRequest(String url, String method,
            List<NameValuePair> params) {
        try {
            if (method == "POST") {
                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(url);
                httpPost.setEntity(new UrlEncodedFormEntity(params));
                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 (Exception e) {
            e.printStackTrace();
        }
        try{
            JObj = new JSONObject(json);
        } catch (JSONException e){
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }
        return JObj;
    }
}

index.php

<?php
require_once 'include/app_android/DB_Functions.php';
$db = new DB_Functions();
$response = array();
$result = $db->get_cambio();
if (mysql_num_rows($result) != 0) {
    while($reg = mysql_fetch_array($result)){
        $fecha = date_create($reg['fecha']);
        $response['fecha'] = date_format($fecha, 'd-m-Y')." ".date_format($fecha, 'H:i:s');
        $response['cambio'] = $reg['cambio'];
    }
    echo json_encode($response);
}
?>

我对这一切都是新手,但我真的没有注意到可能是什么错误,正如我上面所说,我关注了另一个帖子,我没有发现错误

谢谢大家。

PD:在一些帖子中给了我负面的分数,如果我给了,请留下评论,知道我错了

您正在解析一个空字符串,因为您从未为json分配不同的值。您提出了一个请求,并将is设置为引用响应中的输入流,但不使用is

你可能想要:

JObj = new JSONObject(new JSONTokener(is));

但是,请注意:

  • 目前还不清楚为什么这些是实例变量。为什么解析器类型在解析时要更改其状态?我会使用局部变量
  • 既然makeHttpRequest方法不使用任何每实例状态,为什么它是一个实例方法呢
  • 您的许多字段都是包私有的。拥有非私人领域很少是个好主意
  • 如果在获取内容时引发异常,则只需打印堆栈跟踪并继续。这几乎是个好主意。一般来说,最好让异常传播
  • 捕捉Exception很少是个好主意
  • JObj是字段的非常规名称