Gson与Json的单键值

时间:2015-12-22 04:46:41

标签: java android json gson

我有一个单键值对,我需要使用Gson转换为Json。我怎么能这样做?说我有

url(r'^$', my_not_cb_view)

注意我没有序列化整个班级:只有两个字段。

8 个答案:

答案 0 :(得分:6)

为什么不手动创建json而不是使用库。

public String singleKeyValueToJson(){
    JSONObject json=new JSONObject();
    json.put(key,value);
    return json.toString();
}

答案 1 :(得分:2)

您可以使用@Expose注释执行此操作。

import com.google.gson.annotations.Expose;

public class Book {

    @Expose
    private String author;
    @Expose
    private String title;
    private Integer year;
    private Double price;

    public Book() {
        this("test.org", "Exclude properties with Gson", 1989, 49.55);
    }

    public Book(String author, String title, Integer year, Double price) {
        this.author = author;
        this.title = title;
        this.year = year;
        this.price = price;
    }
}

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

public class WriteGson {

    public static void main(String[] args) {

        Gson gson = new GsonBuilder()
                .excludeFieldsWithoutExposeAnnotation()
                .create();

        String json = gson.toJson(new Book());
        System.out.println(json);

        Gson gsonNonExcluded = new Gson();
        String jsonNonExcluded = gsonNonExcluded.toJson(new Book());
        System.out.println(jsonNonExcluded);
    }
}

{“author”:“test.org”,“title”:“用Gson排除属性”} {“author”:“test.org”,“title”:“用Gson排除属性”,“年份”:1989年,“价格”:49.55}

答案 2 :(得分:1)

我使用谷歌GSON库com.google.gson.Gson,代码简单明了 因为你只是想要为它选择键值 SimpleEntry是最好的类,你可以这样做,

    public String singleKeyValueToJson()
    {
        Gson jsonObj = new Gson();
        SimpleEntry<String,String > keyValue = new SimpleEntry<String, String>(this.key, this.value);
        return jsonObj.toJson(keyValue);
    }

修改
如果您经常或多次序列化,则可以使用Gson对象的单个实例来提高内存利用率。

答案 3 :(得分:1)

考虑你的类有3个变量和一个方法来返回只有2个变量的JSONObject,如下面的

class MyClass{
    String _value1 = "1234";
    int _value2 = 9100;
    String _value3 = "5678";

    public String singleKeyValueToJson(){
        //add only selected variables to holder object(here HashMap),
        HashMap<String,Object> map = new HashMap();
        map.put("key1",_value1);
        map.put("key2",_value2);
        //convert holder object to JSONObject directly and return as string as follows
        return new Gson().toJson(map);
    }
}

永远不要忘记将Gson lib添加到您的项目中,当您调用该方法时会将JSONObject作为String返回

    {"key2":9100,"key1":"1234"}

答案 4 :(得分:0)

你可以像下面这样使用gson:

public class MyClass {

    private static final Gson gson = new Gson();

    String key;
    String value;

    public String singleKeyValueToJson() {
        return gson.toJson(this);
    }

}

请注意,Gson是静态的,用于减少开销,并且它是最终的,以防止创建另一个Gson实例。

答案 5 :(得分:0)

For gson u can write like this


public class MyClass {
    String key;
    public MyClass(String value) {
        this.key = value;
    }
    public String getKey() {
        return key;
    }

    public void setKey(String value) {
        this.key = value;
    }
}


Gson gson = new Gson();

MyClass data = new MyClass("ValueData");

String requestString = gson.toJson(data);

答案 6 :(得分:0)

class A {
public String key;
public String value;

public String singleKeyValueToJson() {
        A als = new A();
        als.key= "text1";
        als.value= "text2";
        GsonBuilder builder = new GsonBuilder();
        Gson gson = builder.create();
        return gson.toJson(als);    
    }
}

它将使用Gson

将单个键值返回给Json

答案 7 :(得分:0)

只是尝试手动创建json数据。 getJsonData()此方法将返回json。

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

class MyClass{
     private String key;
     private String value;

    public String getkey() {
            return key;
    }

    public void setkey(String key) {
            this.key = key;
    }    

    public String getValue() {
            return value;
    }

    public void setValue(String value ) {
            this.value = value ;
    }


    public JSONObject getJsonData(){

    JSONObject jsonObject = new JSONObject();

    try {
        jsonObject.put(getKey(), getValue());

    } catch (JSONException e) {
            e.printStackTrace();
    }
    return jsonObject;

    }    
}