Answers:
public class Producto {
int idProducto;
String nombre;
Double precio;
public Producto(int idProducto, String nombre, Double precio) {
this.idProducto = idProducto;
this.nombre = nombre;
this.precio = precio;
}
public int getIdProducto() {
return idProducto;
}
public void setIdProducto(int idProducto) {
this.idProducto = idProducto;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public Double getPrecio() {
return precio;
}
public void setPrecio(Double precio) {
this.precio = precio;
}
public String toJSON(){
JSONObject jsonObject= new JSONObject();
try {
jsonObject.put("id", getIdProducto());
jsonObject.put("nombre", getNombre());
jsonObject.put("precio", getPrecio());
return jsonObject.toString();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return "";
}
}
可能是更好的选择:
@Override
public String toString() {
return new GsonBuilder().create().toJson(this, Producto.class);
}
toString()
方法时,以默认方式打印时将创建许多String对象-由Android Studio或IntelliJ Idea生成-但是,这是一行代码,并使用GsonBuilder的功能。
Spring for Android使用RestTemplate轻松做到这一点:
final String url = "http://192.168.1.50:9000/greeting";
RestTemplate restTemplate = new RestTemplate();
restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
Greeting greeting = restTemplate.getForObject(url, Greeting.class);
从Android 3.0(API级别11)开始,Android具有更新和改进的JSON解析器。
http://developer.android.com/reference/android/util/JsonReader.html
读取JSON(RFC 4627)编码的值作为令牌流。此流包括文字值(字符串,数字,布尔值和null)以及对象和数组的开始和结束定界符。令牌以深度优先顺序遍历,与JSON文档中出现的顺序相同。在JSON对象中,名称/值对由单个令牌表示。
下载Gradle库:
compile 'com.google.code.gson:gson:2.8.2'
在方法中使用库。
Gson gson = new Gson();
//transform a java object to json
System.out.println("json =" + gson.toJson(Object.class).toString());
//Transform a json to java object
String json = string_json;
List<Object> lstObject = gson.fromJson(json_ string, Object.class);