1

Java クラスを JSON 文字列 ( gson )にシリアル化するための使いやすいツールがあります。主流のライブラリまたは Java 言語機能は、オブジェクトを Java マップにマップする同様の機能を提供しますか?

クラス C1 でこれを行う自然な方法は次のとおりです。

class C1
{
  private int x;
  private int y;

  public int getX() { return x; }
  public void setX(int x) { this.x = x; }

  public int getY() { return y; }
  public void setY(int y) { this.y = y; }
}

オブジェクト o1:

C1 o1 = ...

... になり得る:

Map<String, Integer> result = new HashMap<>();
result.put("x",o1.getX());
result.put("y",o1.getY());

gson の動作は非常に簡単です (gson の Web サイトから)。

BagOfPrimitives obj = new BagOfPrimitives();
Gson gson = new Gson();
String json = gson.toJson(obj);

次のようなものを使用して、自分でそのツールを開発できることを理解しています。

Class.getDeclaredFields()

しかし、この機能はすでに主流のライブラリに含まれているのだろうか.

4

3 に答える 3

5

最後に、独自のマッパーを実装することにしました。

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;


public class Serializer {
    static public Map<String, Object> object2Map(Object o)
    {
        Class co = o.getClass();
        Field [] cfields = co.getDeclaredFields();
        Map<String, Object> ret = new HashMap<>();
        for(Field f: cfields)
        {
            String attributeName = f.getName();
            String getterMethodName = "get"
                               + attributeName.substring(0, 1).toUpperCase()
                               + attributeName.substring(1, attributeName.length());
            Method m = null;
            try {
                m = co.getMethod(getterMethodName);
                Object valObject = m.invoke(o);
                ret.put(attributeName, valObject);
            } catch (Exception e) {
                continue; 
            }
        }
        return ret;
    }
}

ばかげた使用例:

public class JavaUtilsTests {

    static public class C1
    {

        public C1(int x, int y) {
            this.x = x;
            this.y = y;
        }       

        public int getX() { return x; }
        public void setX(int x) { this.x = x; }

        public int getY() { return y; }
        public void setY(int y) { this.y = y; }

        private int x;
        private int y;
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        C1 o1 = new C1(1,2);
        Map<String, Object> attributesMap = Serializer.object2Map(o1);
        System.out.printf("x=%s\ty=%s\n", attributesMap.get("x"), attributesMap.get("y"));
    }
}

私の「マッパー」メソッドでは、次のパターンで名前が付けられたゲッターとセッターを提示する入力オブジェクトが必要です。

(get|set)attributeTitledName

于 2013-11-13T15:05:01.243 に答える
3

これがジャクソンの解決策です。Jackson は主に、オブジェクトを json との間で変換するために使用されます。

メイヴン

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.9.7</version>
</dependency>

Java の例

class C1 {
    private int x;
    private int y;

    public int getX() { return x; }
    public void setX(int x) { this.x = x; }

    public int getY() { return y; }
    public void setY(int y) { this.y = y; }

    public void main(String[] args) {
            C1 obj = new C1();
            obj.setX(10);
            obj.setY(20);

            Map<String, Object> map = new ObjectMapper().convertValue(obj, Map.class);
            System.out.println(map); 
    }

}
于 2018-12-18T14:28:48.953 に答える