0
我正在嘗試編寫一個應用程序,它將連接到數據庫,提取數據並在手機上顯示該數據。儘管我遇到了一個問題。在ListView中顯示JsonArray
我連接到使用數據庫:
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://74.208.131.62/Androidtest/testscript.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
Log.d("Connection Success","Connected To Database");
} catch(Exception e) {
}
test.php的是一個SQL將返回值:ITEM_ID(auto_inc_int),OtherTerms(字符串)。
然後,我把它轉換爲字符串:
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
sb = new StringBuilder();
sb.append(reader.readLine() + "\n");
String line = "0";
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
is.close();
result = sb.toString();
}
然後我用這部分,我不明白,我只是從網上抄了一遍:
int Item_id;
String Item_name;
String populate = new String();
try {
jArray = new JSONArray(result);
JSONObject json_data = null;
for(int i = 0; i < jArray.length(); i++) {
json_data = jArray.getJSONObject(i);
Item_id = json_data.getInt("id");
Item_name = json_data.getString("item");
}
...
然而,我收到消息「沒有找到物品」。我嘗試更改數據庫的名稱,但LogCat中沒有出現「連接錯誤」,而是「找不到任何項目」。
我不知道我的應用程序是否成功連接到數據庫。我需要將結果插入到ListView
對象中。我究竟做錯了什麼?
(另外,節日快樂給大家!)
所以,你的意思是沒有listadapter我不能完成這個? (我只通過使用JsonObject試過它..非常感謝你的答覆!它幫助了很多! – Beetle 2011-12-27 18:11:42
我試圖理解你給我的代碼。我有一個小問題搞清楚R.layout.catagorymenu。什麼是這個對象?一個列表視圖? – Beetle 2012-01-11 02:19:56