JSON レスポンスを UTF-8 に変換するのに助けが必要です。.json ファイルを UTF-8 (BOM なし) で保存すると、すべてが完全に機能しました。UTF-8 のみでファイルを保存すると機能せず、JSON の取得中にアプリがクラッシュするようになりました。
一番下のLogcat
起源:
..
public class JSONPARSER extends ListActivity {
private static String url = "http://profusum.se/neger.json";
private static final String TAG_CONTACTS = "messages";
private static final String TAG_NAME = "namn";
private static final String TAG_ID = "id";
private static final String TAG_KIK = "facebook";
private static final String TAG_IMGURL = "img";
JSONArray contacts = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.drivers);
ArrayList<HashMap<String, String>> contactList = new ArrayList<HashMap<String, String>>();
JSONParser jParser = new JSONParser();
JSONObject json = jParser.getJSONFromUrl(url);
try {
contacts = json.getJSONArray(TAG_CONTACTS);
for(int i = 0; i < contacts.length(); i++){
JSONObject c = contacts.getJSONObject(i);
// Storing each json item in variable
String id = c.getString(TAG_ID);
String name = c.getString(TAG_NAME);
HashMap<String, String> map = new HashMap<String, String>();
// adding each child node to HashMap key => value
map.put(TAG_ID, id);
map.put(TAG_NAME, name);
contactList.add(map);
}
} catch (JSONException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ListAdapter adapter = new SimpleAdapter(this, contactList,
R.layout.list_item,
new String[] { TAG_NAME,}, new int[] {
R.id.inboxName, });
setListAdapter(adapter);
ListView lv = getListView();
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
String name = ((TextView) view.findViewById(R.id.inboxName)).getText().toString();
Intent in = new Intent(getApplicationContext(), SingleMenuItemActivity.class);
in.putExtra(TAG_NAME, name);
startActivity(in);
}
});
}
}
私は今これを懸命に検索しましたが、それは簡単だと思います..しかし、私はそれを理解できません。
05-01 21:13:08.213: E/JSON Parser(27153): Error parsing data org.json.JSONException: Value  of type java.lang.String cannot be converted to JSONObject
概要
Notepad ++で「UTF-8(BOMなし)」でファイルを保存すると、解析は成功します。しかし、私はアプリでこれらの奇妙なシンボルを取得します.(例を参照)
しかし、メモ帳++で「UTF-8」でファイルを保存すると、JSONは正しいシンボルを提供しますが、Androidアプリはそれを解析しません.
Example
Tim Billström