您如何解析 JSON 文件并使用它来创建 class 对象?
How do you parse a JSON file and use it to create a class object?
我正在处理可以在我的程序中使用的 JSON 文件。但是,我对如何使用该库感到有些困惑。例如,这是我试图在此处解析的以下 JSON 文件:
{
"shoes": [
{
"shoeName": "Shoe",
"shoePrice": "120",
"brand": "Shoe",
"typeOfShoes": "Running",
"style": "Cool",
"Color": [
"Blue",
"Green",
"Pink"
],
"Sizes": [
"W5/M3.5",
"W5.5/M4"
],
"Description": "The Shoe SE features sleek lines and a sheer upper that combine classic Air Max elements into a lightweight, comfortable and versatile icon. Together with its smart toe-down profile and extra lift, the shoe offers an ever-bigger expression..",
"shipping": "0",
"tax": "0",
"sub-total": "0",
"review": "4.5",
"images": [
"https://c.static-nike.com/a/images/t_PDP_864_v1/f_auto,b_rgb:f5f5f5/ds8ojj70wtpthbzadaft/air-max-dia-se-shoe-WCG8t5.jpg",
"https://c.static-nike.com/a/images/t_PDP_864_v1/f_auto,b_rgb:f5f5f5,q_80/n5txnsyb21v5zhruxfer/air-max-dia-se-shoe-WCG8t5.jpg"
],
"totalUsers": "60",
"totalRaffles": "80",
"clientID_Paypal": "",
"clientSecret_Paypal": "",
"isSold": "false"
},
{
"shoeName": "Empty Shoe",
"shoePrice": "",
"brand": "",
"typeOfShoes": "",
"style": "",
"Color": [
],
"Sizes": [
],
"Description": "",
"shipping": "",
"tax": "",
"sub-total": "",
"review": "",
"images": [
],
"totalUsers": "",
"totalRaffles": "",
"clientID_Paypal": "",
"clientSecret_Paypal": "",
"isSold": "false"
},
{
"shoeName": "Empty Shoe1",
"shoePrice": "",
"brand": "",
"typeOfShoes": "",
"style": "",
"Color": [
],
"Sizes": [
],
"Description": "",
"shipping": "",
"tax": "",
"sub-total": "",
"review": "",
"images": [
],
"totalUsers": "",
"totalRaffles": "",
"clientID_Paypal": "",
"clientSecret_Paypal": "",
"isSold": "false"
}
]
}
JSON 文件非常简单。在里面,有一个名为 "shoes" 的对象数组,每个对象都有自己的 shoeName、shoePrice、品牌等。但是,我如何才能通过检索每个值来创建数组 "Shoe" 对象在 JSON 文件中?
我的Shoe.java:
import java.awt.Image;
public class Shoe {
public int shoePrice;
public int shipping;
public int tax;
public int subtotal;
public int totalUsers;
public double review;
public int totalRaffles;
public int rafflesBought;
public String shoeName;
public String style;
public String typeOfShoes;
public String brand;
public Image[] images;
public String name;
public String description;
public String[] colors;
public String[] sizes;
public boolean isSold;
public Shoe(int shoePrice, int shipping, int tax, int subtotal, double review,
int totalRaffles, int rafflesBought,
String shoeName, String style, String typeOfShoes, String brand,
Image[] images,
String description, String[] colors, String[] sizes,
boolean isSold) {
this.shoePrice = shoePrice;
this.shipping = shipping;
this.tax = tax;
this.subtotal = subtotal;
this.review = review;
this.totalRaffles = totalRaffles;
this.rafflesBought = rafflesBought;
this.sizes = sizes;
this.shoeName = shoeName;
this.style = style;
this.typeOfShoes = typeOfShoes;
this.images = images;
this.description = description;
this.colors = colors;
this.isSold = isSold;
this.brand = brand;
}
}
我试过的:
我尝试定义一个 Shoe 数组并尝试使用 for 循环初始化它以检索值、制作一个 Shoe 并将其添加到数组中,但是,我对您如何编程感到困惑这个。
使用像 GSON 这样的库将 JSON 转换为对象。
在pom.xml中,添加对GSON的依赖:
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
由于您的 JSON returns String even for integers and double,这对您的 Shoe Class.
是合适的定义
public class Shoe
{
public String shoeName;
public String shoePrice;
public String brand;
public String typeOfShoes;
public String style;
public String[] Color;
public String[] Sizes;
public String Description;
public String shipping;
public String tax;
public String subtotal;
public String review;
public String[] images;
public String totalUsers;
public String totalRaffles;
public String clientID_Paypal;
public String clientSecret_Paypal;
public boolean isSold;
}
因为'shoes'是父级对象,所以你也需要定义它
public class Shoes
{
private List<Shoe> shoes;
public List<Shoe> getShoes()
{
return shoes;
}
public void setShoes(List<Shoe> shoes)
{
this.shoes = shoes;
}
}
假设 jsonData 是作为字符串输入的 JSON,下面的代码会将 JSON 字符串转换为 "Shoes" 对象,其中包含 List
Gson gson = new Gson();
Type dataType = (new TypeToken<Shoes>()
{
}).getType();
Shoes shoeList = gson.fromJson(jsonData, dataType);
for(Shoe e: shoeList.getShoes()) {
System.out.println(e);
}
我正在处理可以在我的程序中使用的 JSON 文件。但是,我对如何使用该库感到有些困惑。例如,这是我试图在此处解析的以下 JSON 文件:
{
"shoes": [
{
"shoeName": "Shoe",
"shoePrice": "120",
"brand": "Shoe",
"typeOfShoes": "Running",
"style": "Cool",
"Color": [
"Blue",
"Green",
"Pink"
],
"Sizes": [
"W5/M3.5",
"W5.5/M4"
],
"Description": "The Shoe SE features sleek lines and a sheer upper that combine classic Air Max elements into a lightweight, comfortable and versatile icon. Together with its smart toe-down profile and extra lift, the shoe offers an ever-bigger expression..",
"shipping": "0",
"tax": "0",
"sub-total": "0",
"review": "4.5",
"images": [
"https://c.static-nike.com/a/images/t_PDP_864_v1/f_auto,b_rgb:f5f5f5/ds8ojj70wtpthbzadaft/air-max-dia-se-shoe-WCG8t5.jpg",
"https://c.static-nike.com/a/images/t_PDP_864_v1/f_auto,b_rgb:f5f5f5,q_80/n5txnsyb21v5zhruxfer/air-max-dia-se-shoe-WCG8t5.jpg"
],
"totalUsers": "60",
"totalRaffles": "80",
"clientID_Paypal": "",
"clientSecret_Paypal": "",
"isSold": "false"
},
{
"shoeName": "Empty Shoe",
"shoePrice": "",
"brand": "",
"typeOfShoes": "",
"style": "",
"Color": [
],
"Sizes": [
],
"Description": "",
"shipping": "",
"tax": "",
"sub-total": "",
"review": "",
"images": [
],
"totalUsers": "",
"totalRaffles": "",
"clientID_Paypal": "",
"clientSecret_Paypal": "",
"isSold": "false"
},
{
"shoeName": "Empty Shoe1",
"shoePrice": "",
"brand": "",
"typeOfShoes": "",
"style": "",
"Color": [
],
"Sizes": [
],
"Description": "",
"shipping": "",
"tax": "",
"sub-total": "",
"review": "",
"images": [
],
"totalUsers": "",
"totalRaffles": "",
"clientID_Paypal": "",
"clientSecret_Paypal": "",
"isSold": "false"
}
]
}
JSON 文件非常简单。在里面,有一个名为 "shoes" 的对象数组,每个对象都有自己的 shoeName、shoePrice、品牌等。但是,我如何才能通过检索每个值来创建数组 "Shoe" 对象在 JSON 文件中?
我的Shoe.java:
import java.awt.Image;
public class Shoe {
public int shoePrice;
public int shipping;
public int tax;
public int subtotal;
public int totalUsers;
public double review;
public int totalRaffles;
public int rafflesBought;
public String shoeName;
public String style;
public String typeOfShoes;
public String brand;
public Image[] images;
public String name;
public String description;
public String[] colors;
public String[] sizes;
public boolean isSold;
public Shoe(int shoePrice, int shipping, int tax, int subtotal, double review,
int totalRaffles, int rafflesBought,
String shoeName, String style, String typeOfShoes, String brand,
Image[] images,
String description, String[] colors, String[] sizes,
boolean isSold) {
this.shoePrice = shoePrice;
this.shipping = shipping;
this.tax = tax;
this.subtotal = subtotal;
this.review = review;
this.totalRaffles = totalRaffles;
this.rafflesBought = rafflesBought;
this.sizes = sizes;
this.shoeName = shoeName;
this.style = style;
this.typeOfShoes = typeOfShoes;
this.images = images;
this.description = description;
this.colors = colors;
this.isSold = isSold;
this.brand = brand;
}
}
我试过的:
我尝试定义一个 Shoe 数组并尝试使用 for 循环初始化它以检索值、制作一个 Shoe 并将其添加到数组中,但是,我对您如何编程感到困惑这个。
使用像 GSON 这样的库将 JSON 转换为对象。
在pom.xml中,添加对GSON的依赖:
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
由于您的 JSON returns String even for integers and double,这对您的 Shoe Class.
是合适的定义public class Shoe
{
public String shoeName;
public String shoePrice;
public String brand;
public String typeOfShoes;
public String style;
public String[] Color;
public String[] Sizes;
public String Description;
public String shipping;
public String tax;
public String subtotal;
public String review;
public String[] images;
public String totalUsers;
public String totalRaffles;
public String clientID_Paypal;
public String clientSecret_Paypal;
public boolean isSold;
}
因为'shoes'是父级对象,所以你也需要定义它
public class Shoes
{
private List<Shoe> shoes;
public List<Shoe> getShoes()
{
return shoes;
}
public void setShoes(List<Shoe> shoes)
{
this.shoes = shoes;
}
}
假设 jsonData 是作为字符串输入的 JSON,下面的代码会将 JSON 字符串转换为 "Shoes" 对象,其中包含 List
Gson gson = new Gson();
Type dataType = (new TypeToken<Shoes>()
{
}).getType();
Shoes shoeList = gson.fromJson(jsonData, dataType);
for(Shoe e: shoeList.getShoes()) {
System.out.println(e);
}