我希望我的JSON看起来像这样:
{
"information": [{
"timestamp": "xxxx",
"feature": "xxxx",
"ean": 1234,
"data": "xxxx"
}, {
"timestamp": "yyy",
"feature": "yyy",
"ean": 12345,
"data": "yyy"
}]
}
Run Code Online (Sandbox Code Playgroud)
代码到目前为止:
import java.util.List;
public class ValueData {
private List<ValueItems> information;
public ValueData(){
}
public List<ValueItems> getInformation() {
return information;
}
public void setInformation(List<ValueItems> information) {
this.information = information;
}
@Override
public String toString() {
return String.format("{information:%s}", information);
}
}
Run Code Online (Sandbox Code Playgroud)
和
public class ValueItems {
private String timestamp;
private String feature;
private int ean;
private String data; …Run Code Online (Sandbox Code Playgroud)