JSONObject toString有时会抛出ConcurrentModificationError

时间:2015-02-12 21:34:00

标签: android jsonobject

首先,抱歉无法提供我的代码。我创建了一个JSONObject,我正在转换为字符串,我的Android应用程序崩溃有时会出现以下错误。

E/AndroidRuntime( 6162): java.util.ConcurrentModificationException
E/AndroidRuntime( 6162):    at java.util.ArrayList$ArrayListIterator.next(ArrayList.java:573)
E/AndroidRuntime( 6162):    at org.json.JSONArray.writeTo(JSONArray.java:612)
E/AndroidRuntime( 6162):    at org.json.JSONStringer.value(JSONStringer.java:233)
E/AndroidRuntime( 6162):    at org.json.JSONObject.writeTo(JSONObject.java:720)
E/AndroidRuntime( 6162):    at org.json.JSONObject.toString(JSONObject.java:689)

从我的研究中,我无法分辨为什么会出现ConcurrentModificationException。我只有一个线程访问信息。我不认为toString()做任何删除。有人可以解释他们是否在Android中看到任何此类问题以及他们可能如何对其进行排序?

EDITED

根据@ domi的建议添加了稍微修改过的代码。问题一直出现在

行中
  

message.put(“message”,tempObject.toString());

private void message() {
    if (this.jsonObject == null) 
        this.jsonObject = new JSONObject();
    try {
        TimeZone tz = TimeZone.getTimeZone("UTC");
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSS'Z'", Locale.US);
        df.setTimeZone(tz);
        Date date = new Date();
        String dateString = df.format(date);
        System.out.println(dateString);
        jsonObject.put("Date", dateString);

        JSONObject jsObj = new JSONObject();
        jsObj.put("Cat", Cat.getInfo());
        jsonObject.put("Cat", jsObj);

        JSONArray tempInfo = getJsonArray(Dog.getInfo());

        jsonObject.put("Dog", tempInfo);
    } catch (JSONException e) {
        e.printStackTrace();
    }


    TimeZone tz = TimeZone.getTimeZone("UTC");
    SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSS'Z'", Locale.US);
    df.setTimeZone(tz);
    Date date = new Date();
    String dateString = df.format(date);

    if (this.message == null)
        this.message = new JSONObject();

    try {

        message.put("topic", topic);
        JSONObject tempObject = new JSONObject();

        synchronized(this.jsonObject) {
            System.out.println("In lock" + dateString);
            tempObject = this.jsonObject;
            this.jsonObject = null;
        }

        message.put("message", tempObject.toString());
        tempObject = null;

        synchronized (this.message) {
            doSomething(message);
        }
        System.out.println("Out lock");
    } catch (JSONException e) {
        e.printStackTrace();
    } finally {
        System.out.println(message);
    }
}

1 个答案:

答案 0 :(得分:2)

我能够解决这个问题。问题是

message.put("message", tempObject.toString());

方法调用tempObject.toString()导致遍历列表(推测)的迭代,而message.put(...)导致访问结果字符串。有时这会导致ConcurrentModificationException。我能够通过两行来解决它并且有一些锁定。