sda*_*bet 3 java yaml snakeyaml
是否可以解析snakeyaml以下内容并获得一个List<Radio>(Radio合适的java bean在哪里)?
-
id: chaine416
name: 'France Inter'
type: music
-
id: chaine417
name: 'France Culture'
type: music
-
id: chaine418
name: 'Couleur 3'
type: music
Run Code Online (Sandbox Code Playgroud)
new Yaml().load(...);返回 a List<HashMap>,但我想得到 a List<Radio>。
小智 5
我知道的唯一方法是使用顶级对象来处理集合。
yaml 文件:
---
stations:
-
id: chaine416
name: "France Inter"
type: music
-
id: chaine417
name: "France Culture"
type: music
-
id: chaine418
name: "Couleur 3"
type: music
Run Code Online (Sandbox Code Playgroud)
我刚刚添加了“---”,新文档和属性站。
然后 :
package snakeyaml;
import java.util.ArrayList;
public class Radios {
ArrayList<RadioStation> stations = new ArrayList<RadioStation>();
public ArrayList<RadioStation> getStations() {
return stations;
}
public void setStations(ArrayList<RadioStation> stations) {
this.stations = stations;
}
}
Run Code Online (Sandbox Code Playgroud)
RadioStation 类:
package snakeyaml;
public class RadioStation {
String id;
String name;
String type;
public RadioStation(){
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return "RadioStation{" +
"id='" + id + '\'' +
", name='" + name + '\'' +
", type='" + type + '\'' +
'}';
}
}
Run Code Online (Sandbox Code Playgroud)
并读取 YAML 文件:
package snakeyaml;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.Constructor;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
public class Test {
public static void main(String[] args) {
Yaml yaml = new Yaml(new Constructor(Radios.class));
try {
Radios result = (Radios) yaml.load(new FileInputStream("/home/ofe/dev/projets/projets_non_byo/TachesInfoengine/src/snakeyaml/data.yaml"));
for (RadioStation radioStation : result.getStations()) {
System.out.println("radioStation = " + radioStation);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4179 次 |
| 最近记录: |