unchecked调用添加(E)作为原始类型ArrayList和HashMap的成员

时间:2014-07-03 08:28:23

标签: java

我有以下函数使用org.json.simple来创建JSON对象。

public JSONObject createJSONRequest() {
    // /* Create JSON Objects */
    JSONObject jsonObject = new JSONObject();
    Map<String, String> map = new HashMap<String, String>();

    map.put(ACCESS_TOKEN_KEY, mAccessToken);            
    map.put(SESSION_ID_KEY, mSessionId);
    map.put(SNAPZ_ID_KEY, mSnapzId);
    map.put(EMAIL_KEY, mEmail);
    map.put(EMAIL_PWD_KEY, mEmailPwd);

    JSONArray list = new JSONArray();
    list.add(map);
    jsonObject.put("parameters", list);
    jsonObject.put("function", "verifyEmail");

    return jsonObject;
}

但是,当我使用lint checker时,我会不断收到此警告。

[unchecked] unchecked call to add(E) as a member of the raw type ArrayList
        list.add(map);
                ^
where E is a type-variable: E extends Object declared in class ArrayList

 warning: [unchecked] unchecked call to put(K,V) as a member of the raw type HashMap
        jsonObject.put("parameters", list);
                      ^
where K,V are type-variables:
    K extends Object declared in class HashMap
    V extends Object declared in class HashMap

warning: [unchecked] unchecked call to put(K,V) as a member of the raw type HashMap
        jsonObject.put("function", "verifyEmail");

我试过使用泛型类型。 HashMap使用泛型,但其他对象JSONObject JSONArray不会使用。

非常感谢任何建议,

1 个答案:

答案 0 :(得分:14)

您收到此警告,因为库内部使用原始类型集合。 要隐藏此警告,请使用@SuppressWarnings("unchecked")注释您的方法。

如果你想使用带有泛型支持的json库。你可以去Google GSOn。我在很多项目中都使用过它。它很简单并且使用通用集合。