gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 04:52:09 25 4
gpt4 key购买 nike

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

日志.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

MainActivity.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 方法不使用任何每实例状态,为什么它是一个实例方法?
  • 您的许多字段都是包私有(private)的。拥有非私有(private)字段并不是一个好主意。
  • 如果获取内容时抛出异常,您只需打印堆栈跟踪并继续。这几乎从来都不是一个好主意。一般来说,最好让异常传播。
  • 捕获异常并不是一个好主意
  • JObj 是字段的非常规名称。

关于java - 解析数据 org.json.JSONException 时出错,已经尝试其他帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29130455/

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