读取Java中的JSON数组 [英] Read JSON array in Java

查看:93
本文介绍了读取Java中的JSON数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试用Java读取JSON文件(我从JSON开始)。

I'm trying to read JSON file in Java (I'm starting with JSON).

JSON文件:

[
  {
    "idProducto":1,
    "Nombre":"Coca Cola",
    "Precio":0.9,
    "Cantidad":19
  },
  {
    "idProducto":2,
    "Nombre":"Coca Cola Zero",
    "Precio":0.6,
    "Cantidad":19
  },
[....]
]

我尝试了以下操作:

ArrayList<Dispensador> Productos = new ArrayList<Dispensador>();

    FileReader reader = new FileReader(new File("productos.json"));
    JSONParser jsonParser = new JSONParser();
    JSONArray jsonArray = (JSONArray) jsonParser.parse(reader);
    JSONObject object = (JSONObject) jsonArray.get(0);
    Long idProducto = (Long) object.get("idProducto");
    JSONArray nombres = object.getJSONArray("idProducto");

    Iterator i = jsonArray.iterator();

    while (i.hasNext()) {
        String nombre = (String) object.get("Nombre");
        Double precio = (Double) object.get("Precio");
        BigDecimal precioB = new BigDecimal(precio);
        Long cantidad = (Long) object.get("Cantidad");
        int cantidadB = toIntExact(cantidad);
        System.out.println(nombre);
        Productos.add(new Dispensador(nombre, precioB, cantidadB));
    }

但是进入循环。我也尝试了for循环,但是没有运气。

But enters into loop. Also I tried with a for loop, but no luck.

谢谢!

推荐答案

您可以使用 gson

您可以使用Maven或jar文件: http://mvnrepository.com/artifact/com.google.code.gson/gson

You can use Maven or jar file: http://mvnrepository.com/artifact/com.google.code.gson/gson

package com.test;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;

import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;

public class AppJsonTest {

    public static void main(String[] args) {
        List<DataObject> objList = new ArrayList<DataObject>();
        objList.add(new DataObject(1, "Coca Cola", 0.9, 19));
        objList.add(new DataObject(2, "Coca Cola Zero", 0.6, 19));

        // Convert the object to a JSON string
        String json = new Gson().toJson(objList);
        System.out.println(json);

        // Now convert the JSON string back to your java object
        Type type = new TypeToken<List<DataObject>>() {
        }.getType();
        List<DataObject> inpList = new Gson().fromJson(json, type);
        for (int i = 0; i < inpList.size(); i++) {
            DataObject x = inpList.get(i);
            System.out.println(x.toString());
        }
    }
}

class DataObject {
    int idProducto;
    String Nombre;
    Double Precio;
    int Cantidad;

    public DataObject(int idProducto, String nombre, Double precio, int cantidad) {
        this.idProducto = idProducto;
        Nombre = nombre;
        Precio = precio;
        Cantidad = cantidad;
    }

    public int getIdProducto() {
        return idProducto;
    }

    public void setIdProducto(int idProducto) {
        this.idProducto = idProducto;
    }

    public String getNombre() {
        return Nombre;
    }

    public void setNombre(String nombre) {
        Nombre = nombre;
    }

    public Double getPrecio() {
        return Precio;
    }

    public void setPrecio(Double precio) {
        Precio = precio;
    }

    public int getCantidad() {
        return Cantidad;
    }

    public void setCantidad(int cantidad) {
        Cantidad = cantidad;
    }

    @Override
    public String toString() {
        return "DataObject [idProducto=" + idProducto + ", Nombre=" + Nombre + ", Precio=" + Precio + ", Cantidad=" + Cantidad + "]";
    }

}

这篇关于读取Java中的JSON数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆