gpt4 book ai didi

php - ANDROID:执行doInBackground时发生错误

转载 作者:搜寻专家 更新时间:2023-11-01 08:49:01 25 4
gpt4 key购买 nike

我目前正在学习构建一个 android 应用程序,该应用程序通过我网站上的 php 网络服务连接到 mySQL 数据库,并从中提取有关不同商店的信息。

我一直在学习教程,但遇到错误“java.lang.RuntimeException:执行 doInBackground 时出错”。我在这里搜索了很长时间,已经回答的问题似乎对我的情况没有帮助。因此想知道您是否可以提供帮助?

我的代码:

import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import org.apache.http.NameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.ListActivity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;

public class AllShopsActivity extends ListActivity {

// Progress Dialog
private ProgressDialog pDialog;

// Creating JSON Parser object
JSONParser jParser = new JSONParser();

ArrayList<HashMap<String, String>> shopsList;

// url to get all shops list
private static final String url_all_shops = "http://www.mywebsitename.biz/android_connect/get_all_shops.php";

// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_SHOPS = "shops";
private static final String TAG_PID = "pid";
private static final String TAG_NAME = "name";

// shops JSONArray
JSONArray shops = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.all_shops);

// Hashmap for ListView
shopsList = new ArrayList<HashMap<String, String>>();

// Loading shops in Background Thread
new LoadAllshops().execute();

// Get listview
ListView lv = getListView();


// on seleting single shop
// launching Edit shop Screen
lv.setOnItemClickListener(new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// getting values from selected ListItem
String pid = ((TextView) view.findViewById(R.id.pid)).getText()
.toString();

// Starting new intent
Intent in = new Intent(getApplicationContext(),
EditshopAcivity.class);
// sending pid to next activity
in.putExtra(TAG_PID, pid);

// starting new activity and expecting some response back
startActivityForResult(in, 100);
}
});
}

// Response from Edit shop Activity
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// if result code 100
if (resultCode == 100) {
// if result code 100 is received
// means user edited/deleted shop
// reload this screen again
Intent intent = getIntent();
finish();
startActivity(intent);
}

}

/**
* Background Async Task to Load all shop by making HTTP Request
* */
class LoadAllshops extends AsyncTask<String, String, String> {

/**
* Before starting background thread Show Progress Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(AllShopsActivity.this);
pDialog.setMessage("Loading shops. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
}

/**
* getting All shops from url
* */
protected String doInBackground(String... args) {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(url_all_shops, "GET", params);

// Check your log cat for JSON reponse
//Log.d("All shops: ", json.toString());

try {

// Checking for SUCCESS TAG
int success = json.getInt(TAG_SUCCESS);

if (success == 1) {
// shops found
// Getting Array of shops
shops = json.getJSONArray(TAG_SHOPS);

// looping through All shops
for (int i = 0; i < shops.length(); i++) {
JSONObject c = shops.getJSONObject(i);

// Storing each json item in variable
String id = c.getString(TAG_PID);
String name = c.getString(TAG_NAME);

// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();

// adding each child node to HashMap key => value
map.put(TAG_PID, id);
map.put(TAG_NAME, name);

// adding HashList to ArrayList
shopsList.add(map);
}
} else {
// no shops found
// Launch Add New shop Activity
Intent i = new Intent(getApplicationContext(),
NewshopActivity.class);
// Closing all previous activities
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
}
} catch (JSONException e) {
e.printStackTrace();
}

return null;

}

/**
* After completing background task Dismiss the progress dialog
* **/
protected void onPostExecute(String file_url) {
// dismiss the dialog after getting all shops
pDialog.dismiss();
// updating UI from Background Thread
runOnUiThread(new Runnable() {
public void run() {
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(
AllShopsActivity.this, shopsList,
R.layout.list_item, new String[] { TAG_PID,
TAG_NAME},
new int[] { R.id.pid, R.id.name });
// updating listview
setListAdapter(adapter);
}
});

}

}
}

我注意到 protected String doInBackground(String... args) 行有 'String...' 我以前没见过这会是一个问题还是意味着

注销:

08-24 23:44:50.837: E/AndroidRuntime(1709): FATAL EXCEPTION: AsyncTask #1
08-24 23:44:50.837: E/AndroidRuntime(1709): java.lang.RuntimeException: An error occured while executing doInBackground()
08-24 23:44:50.837: E/AndroidRuntime(1709): at android.os.AsyncTask$3.done(AsyncTask.java:299)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.FutureTask.setException(FutureTask.java:124)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.FutureTask.run(FutureTask.java:137)
08-24 23:44:50.837: E/AndroidRuntime(1709): at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:230)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.lang.Thread.run(Thread.java:856)
08-24 23:44:50.837: E/AndroidRuntime(1709): Caused by: java.lang.NullPointerException
08-24 23:44:50.837: E/AndroidRuntime(1709): at com.example.androidhive.AllProductsActivity$LoadAllProducts.doInBackground(AllProductsActivity.java:138)
08-24 23:44:50.837: E/AndroidRuntime(1709): at com.example.androidhive.AllProductsActivity$LoadAllProducts.doInBackground(AllProductsActivity.java:1)
08-24 23:44:50.837: E/AndroidRuntime(1709): at android.os.AsyncTask$2.call(AsyncTask.java:287)
08-24 23:44:50.837: E/AndroidRuntime(1709): at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
08-24 23:44:50.837: E/AndroidRuntime(1709): ... 5 more

我已经检查了我的 db_config.php 文件,服务器、密码和用户都是正确的。有什么建议吗?

编辑:添加 list 详细信息:

 <!-- Internet Permissions -->
<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:configChanges="keyboardHidden|orientation"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- All Product Activity -->
<activity
android:name=".AllProductsActivity"
android:label="All Products" >
</activity>

编辑 2:JSONPARSER

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
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 jObj = null;
static String json = "";

// constructor
public JSONParser() {

}

// function get json from url
// by making HTTP POST or GET mehtod
public 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));

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 {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}

// return JSON String
return jObj;

}
}

最佳答案

鉴于您的 JSONParser 代码,返回值似乎保持为 null 并按如下方式返回:jObj

你正在捕获大多数异常并打印出一些消息,检查它们。

此外,看起来主要原因是您的网址没有返回任何内容,就像您在评论中所说的那样。

所以,基本上,只需确保 URL 确实返回您期望的内容并调试 JSONParser 组件。

关于php - ANDROID:执行doInBackground时发生错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25477518/

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