22

我想HashMap转换为json 数组我的代码如下:

Map<String, String> map = new HashMap<String, String>();

map.put("first", "First Value");

map.put("second", "Second Value");

我已经尝试过了,但是没有用。有什么解决办法吗?

JSONArray mJSONArray = new JSONArray(Arrays.asList(map));
4

5 回答 5

49

试试这个,

public JSONObject (Map copyFrom) 

通过从给定映射复制所有名称/值映射来创建一个新的 JSONObject。

参数 copyFrom 一个映射,其键是字符串类型,其值是支持的类型。

如果地图的任何键为空,则引发 NullPointerException。

基本用法:

JSONObject obj=new JSONObject(yourmap);

从 JSONObject 获取 json 数组

编辑:

JSONArray array=new JSONArray(obj.toString());

编辑:(如果发现异常,那么您可以更改为@krb686 评论中提到的)

JSONArray array=new JSONArray("["+obj.toString()+"]");
于 2013-03-14T06:20:19.723 回答
16

由于 android API Lvl 19,您可以简单地执行new JSONObject(new HashMap()). 但是在较旧的 API lvls 上,您会得到丑陋的结果(简单地将 toString 应用于每个非原始值)。

我从 JSONObject 和 JSONArray 收集了方法来简化和漂亮的结果。您可以使用我的解决方案类:

package you.package.name;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Map;

public class JsonUtils
{
    public static JSONObject mapToJson(Map<?, ?> data)
    {
        JSONObject object = new JSONObject();

        for (Map.Entry<?, ?> entry : data.entrySet())
        {
            /*
             * Deviate from the original by checking that keys are non-null and
             * of the proper type. (We still defer validating the values).
             */
            String key = (String) entry.getKey();
            if (key == null)
            {
                throw new NullPointerException("key == null");
            }
            try
            {
                object.put(key, wrap(entry.getValue()));
            }
            catch (JSONException e)
            {
                e.printStackTrace();
            }
        }

        return object;
    }

    public static JSONArray collectionToJson(Collection data)
    {
        JSONArray jsonArray = new JSONArray();
        if (data != null)
        {
            for (Object aData : data)
            {
                jsonArray.put(wrap(aData));
            }
        }
        return jsonArray;
    }

    public static JSONArray arrayToJson(Object data) throws JSONException
    {
        if (!data.getClass().isArray())
        {
            throw new JSONException("Not a primitive data: " + data.getClass());
        }
        final int length = Array.getLength(data);
        JSONArray jsonArray = new JSONArray();
        for (int i = 0; i < length; ++i)
        {
            jsonArray.put(wrap(Array.get(data, i)));
        }

        return jsonArray;
    }

    private static Object wrap(Object o)
    {
        if (o == null)
        {
            return null;
        }
        if (o instanceof JSONArray || o instanceof JSONObject)
        {
            return o;
        }
        try
        {
            if (o instanceof Collection)
            {
                return collectionToJson((Collection) o);
            }
            else if (o.getClass().isArray())
            {
                return arrayToJson(o);
            }
            if (o instanceof Map)
            {
                return mapToJson((Map) o);
            }
            if (o instanceof Boolean ||
                    o instanceof Byte ||
                    o instanceof Character ||
                    o instanceof Double ||
                    o instanceof Float ||
                    o instanceof Integer ||
                    o instanceof Long ||
                    o instanceof Short ||
                    o instanceof String)
            {
                return o;
            }
            if (o.getClass().getPackage().getName().startsWith("java."))
            {
                return o.toString();
            }
        }
        catch (Exception ignored)
        {
        }
        return null;
    }
}

然后,如果您将 mapToJson() 方法应用于您的地图,您可以获得如下结果:

{
  "int": 1,
  "Integer": 2,
  "String": "a",
  "int[]": [1,2,3],
  "Integer[]": [4, 5, 6],
  "String[]": ["a","b","c"],
  "Collection": [1,2,"a"],
  "Map": {
    "b": "B",
    "c": "C",
    "a": "A"
  }
}
于 2014-04-07T12:09:18.830 回答
3

映射由键/值对组成,即每个条目有两个对象,而列表的每个条目只有一个对象。您可以做的是提取所有Map.Entry<K,V>,然后将它们放入数组中:

Set<Map.Entry<String, String> entries = map.entrySet();
JSONArray mJSONArray = new JSONArray(entries);

或者,有时将键或值提取到集合中很有用:

Set<String> keys = map.keySet();
JSONArray mJSONArray = new JSONArray(keys);

或者

List<String> values = map.values();
JSONArray mJSONArray = new JSONArray(values);

注意:如果您选择使用作为条目,则无法保证顺序(该keySet()方法返回 a Set)。那是因为Map接口没有指定任何顺序(除非Map恰好是 a SortedMap)。

于 2013-03-14T06:28:03.773 回答
2

这是最简单的方法。

只需使用

JSONArray jarray = new JSONArray(hashmapobject.toString);
于 2014-02-14T11:06:02.337 回答
1

您可以使用

JSONArray jarray = JSONArray.fromObject(map );

于 2013-03-14T06:06:54.363 回答