繁体   English   中英

如何将字符串转换为JSON?

[英]How to convert a string to JSON?

我正在使用凌空从互联网上获取文件,该文件是一个数组。 我将文件保存在缓存中以执行此操作我必须将文件转换为字符串。 我有一个函数读取缓存并将响应传递给另一个文件以显示信息,但是当我试图将resoionse转换回数组时,我得到一个错误

Value AuthStatus of type java.lang.String cannot be converted to JSONObject

我是android的新手,希望有人可以指出我正确的方向

private void cacheFile(JSONObject response) {
     JSONObject res  = response;
     String filename = "jsonfile";
     FileOutputStream outputStream;

     try {
         outputStream = openFileOutput(filename, Context.MODE_PRIVATE);
         outputStream.write(res.toString().getBytes("utf-8"));
         outputStream.close();
         Log.e(TAG, "Bien");
     } catch (Exception e) {
         e.printStackTrace();
     }
}

private void readCache(String filename) {
    FileInputStream inputStream;
    try {
        inputStream = openFileInput(filename);
        inputStream.read();
        String body = IOUtils.toString(inputStream, StandardCharsets.UTF_8.name());
        inputStream.close(); 
        fromCache(body);
    } catch (Exception e) {
        e.printStackTrace();
    }
}


public void fromCache(String json) { 

    JSONObject jsonObject = null;
    try {
        jsonObject = new JSONObject(json);
        JSONArray jsonArray = jsonObject.getJSONArray("cars");
        Log.e(TAG, "Array Size: " + jsonArray.length());
    } catch (JSONException e) {
        e.printStackTrace();
    } 
}

您必须使用JSONValue.parse方法,如下所示:

public void fromCache(String json) { 
    JSONObject jsonObject = null;
    try {
        jsonObject = (JSONObject)JSONValue.parse(json);
        JSONArray jsonArray = jsonObject.getJSONArray("cars");
        Log.e(TAG, "Array Size: " + jsonArray.length());
    } catch (JSONException e) {
        e.printStackTrace();
    } 
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM