我的应用似乎没有正确地从PHP webservice中提取JSON数据。
访问webservice的函数以从数据库获取所有数据记录会正确生成JSON,但我的应用程序无法获取该数据,并且似乎最终得到NullPointerException
。
LogCat 向我发出此消息:
更新
在以下错误发生之前注意到此黄色错误:
W / System.err(835):org.apache.http.conn.HttpHostConnectException: 连接到http:// localhost被拒绝
如果我无法连接到我的localhost上的webservice,那么我没有将JSON连接到我的应用程序。但是为什么它会拒绝与localhost的连接?
W / System.err(1159):at com.example.myfirstapp.MainActivity $ LoadAllCars.doInBackground(MainActivity.java:113) W / System.err(1159):at com.example.myfirstapp.MainActivity $ LoadAllCars.doInBackground(MainActivity.java:1) E / AndroidRuntime(1159):at com.example.myfirstapp.MainActivity $ LoadAllCars.doInBackground(MainActivity.java:116) E / AndroidRuntime(1159):at com.example.myfirstapp.MainActivity $ LoadAllCars.doInBackground(MainActivity.java:1) E / WindowManager(1159):at com.example.myfirstapp.MainActivity $ LoadAllCars.onPreExecute(MainActivity.java:103)
第113行: JSONObject json = jParser.makeHttpRequest(url_all_cars, "GET", params);
第116行: Log.d("All Cars: ", json.toString());
MainActivity
package com.example.myfirstproject;
//imports
public class MainActivity extends ListActivity implements OnItemClickListener {
// Progress Dialog
private ProgressDialog pDialog;
// Creating JSON Parser object
JSONParser jParser = new JSONParser();
ArrayList<HashMap<String, String>> carsList;
// url to get all products list
private static String url_all_cars = "http://localhost/webservice/get_all_cars.php";
// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_CARS = "cars";
private static final String TAG_NAME = "name";
// products JSONArray
JSONArray cars = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Hashmap for ListView
carsList = new ArrayList<HashMap<String, String>>();
// Loading products in Background Thread
new LoadAllcars().execute();
// Get listview
ListView lv = getListView();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
/**
* Background Async Task to Load all product by making HTTP Request
* */
class LoadAllcars extends AsyncTask<String, String, String> {
/**
* Before starting background thread Show Progress Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(MainActivity.this);
pDialog.setMessage("Loading cars. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
}
/**
* getting All products 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_cars, "GET", params);
// Check your log cat for JSON reponse
Log.d("All cars: ", json.toString());
try {
// Checking for SUCCESS TAG
int success = json.getInt(TAG_SUCCESS);
if (success == 1) {
// products found
// Getting Array of Products
cars = json.getJSONArray(TAG_CARS);
// looping through All Products
for (int i = 0; i < cars.length(); i++) {
JSONObject c = cars.getJSONObject(i);
// Storing each json item in variable
String title = 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_NAME, name);
// adding HashList to ArrayList
carsList.add(map);
}
} else {
// no products found
pDialog = new ProgressDialog(MainActivity.this);
pDialog.setMessage("No cars found");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
}
} 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 products
pDialog.dismiss();
// updating UI from Background Thread
runOnUiThread(new Runnable() {
public void run() {
/**
* Updating parsed JSON data into ListView
* */
ListAdapter adapter = new SimpleAdapter(
MainActivity.this, carsList,
android.R.id.list, new String[] {TAG_NAME},
new int[] { R.id.title });
// updating listview
setListAdapter(adapter);
}
});
}
}
}
修改
JSONParser:
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 method
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;
}
}
答案 0 :(得分:1)
好吧,如果你在这一行得到空指针异常
JSONObject json = jParser.makeHttpRequest(url_all_cars,“GET”,params);
然后它们中的一个或多个必须为空。 jParser是实例化的,url字符串也是,params是列表但是列表中没有任何内容。查看jParser,查看params列表中发生了什么。你需要它们吗?它需要它们吗?
修改强>
因此jParser正在将您的列表(为空)转换为带有字符串构建器的字符串。这是一个空洞的刺痛。
所以你的网址发送到你的服务器时就像这样
http://localhost/webservice/get_all_cars.php?
所以普通的网址却带有问号。这是对的吗?
从httpresponse记录状态代码和状态原因是有意义的,这样你就可以看到服务器正在做什么,你会这样做......
Log.d("Class Name", "Status code: " + httpResponse.getStatusLine().getStatusCode() + " Status Phrase: " + httpResponse.getStatusLine().getReasonPhrase());
修改强>
网址设置为“localhost”,因此我认为它在设备内而不是在您的服务器上查找。改为放入服务器的IP
答案 1 :(得分:1)
我认为您的问题可能是您从未在params
中添加任何内容。它只是一个空的List
。
答案 2 :(得分:0)
问题在这里:
private static String url_all_cars = "http://localhost/webservice/get_all_cars.php";
无法使用localhost
,因为仿真手机本身为localhost
/ 127.0.0.1
您需要将localhost
更改为10.0.2.2
:
private static String url_all_cars = "http://10.0.2.2/webservice/get_all_cars.php";