Android - 将JSON转换为UFT-8

时间:2013-05-01 19:26:19

标签: android json utf-8

我需要帮助将JSON响应转换为UTF-8。 当我用UTF-8(没有BOM)保存我的.json文件时,一切都很完美。当我用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)”保存文件时,解析成功。但我在应用程序中得到了这些奇怪的符号。(参见示例)

但是当我在Notepad ++中使用“UTF-8”保存文件时,JSON会给我正确的符号,但Android应用程序不会解析它。

Example
Tim Billström

2 个答案:

答案 0 :(得分:1)

根据RFC 4627,JSON的默认编码应为UTF-8。并UTF-8 doesn't need a BOM并且实际上不鼓励(严格来说:“UTF-8既不要求也不建议使用BOM”)

所以你应该做的是将文件保存为“UTF-8(无BOM)”(这应该是默认值,“UTF-8(带BOM)”应该是特殊选项。

如果您正在使用JSONParserfrom this blog post(或类似的东西),那么您应修复该代码:它会对ISO-8859-1编码进行硬编码,即错误(除非你明确知道你需要那个)。

理想情况下,您应该尊重服务器在HTTP标头中告诉您的编码。或者,您可以采用指定的默认值(即UTF-8)。

答案 1 :(得分:0)

你应该使用没有BOM的UTF-8编码的JSON,否则你会在文件的开头得到这些奇怪的字符,并且你无法解析它。

另见this question (about PHP but same kind of issue)