Parceler 和 SimpleXml 如 Parceler 的自述文件所述
Parceler and SimpleXml as stated in Parceler's readme
Parceler 的自述文件指出它可以与其他基于 POJO 的库一起使用,特别是 SimpleXML。
是否有任何示例可以证明其用法?
我已经成功地将 Parceler 与 GSON 结合使用:
Gson gson = new GsonBuilder().create();
ParcelerObj parcelerObj = gson.fromJson(jsonStr, ParcelerObj.class);
String str = gson.toJson(parcelerObj);
但是,我不确定从哪里开始使用 SimpleXML。我目前有以下 SimpleXML class:
@Root(name="point")
@Order(attributes={"lat", "lon", " alt"})
public class SensorLocation {
@Attribute
private double lat;
@Attribute
private double lon;
@Attribute
private double alt;
public SensorLocation (
@Attribute(name="lat") double lat,
@Attribute(name="lon") double lon,
@Attribute(name="alt") double alt
) {
this.lat = lat;
this.lon = lon;
this.alt = alt;
}
}
这个class然后可以序列化成下面的XML
<point lat="10.1235" lon="-36.1346" alt="10.124"/>
使用以下代码:
SensorLocation sl = new SensorLocation (10.1235, -36.1346, 10.124);
Serializer s = new Persister();
ByteArrayOutputStream out = new ByteArrayOutputStream();
s.write(sl, out);
我目前有一个奇怪的要求,即保持 XML 属性和元素的特定顺序。这就是我使用 @Order
.
的原因
Parceler 如何与 SimpleXML 一起工作?我会将 Parceler 实例传递给 Serializer.write() 吗?
如果有人能给我指点资源,我可以自己研究。我只是找不到任何起点。
这是一个同时支持 SimpleXML 和 Parceler 的 bean 示例:
@Parcel
@Root(name="point")
@Order(attributes={"lat", "lon", " alt"})
public class SensorLocation {
@Attribute
private double lat;
@Attribute
private double lon;
@Attribute
private double alt;
@ParcelConstructor
public SensorLocation (
@Attribute(name="lat") double lat,
@Attribute(name="lon") double lon,
@Attribute(name="alt") double alt
) {
this.lat = lat;
this.lon = lon;
this.alt = alt;
}
}
值得注意的是,Parceler 的这种配置将使用反射来访问您的 bean 的字段。使用非私有字段将避免警告和轻微的性能影响。
用法:
SensorLocation sl = new SensorLocation (10.1235, -36.1346, 10.124);
Parcelable outgoingParcelable = Parceler.wrap(sl);
//Add to intent, etc.
//Read back in from incoming intent
Parcelable incomingParcelable = ...
SensorLocation sl = Parceler.unwrap(incomingParcelable);
Serializer s = new Persister();
ByteArrayOutputStream out = new ByteArrayOutputStream();
s.write(sl, out);
因为 Parceler 不会在您的 bean 中引入任何代码,您可以随意使用它。
Parceler 的自述文件指出它可以与其他基于 POJO 的库一起使用,特别是 SimpleXML。
是否有任何示例可以证明其用法?
我已经成功地将 Parceler 与 GSON 结合使用:
Gson gson = new GsonBuilder().create();
ParcelerObj parcelerObj = gson.fromJson(jsonStr, ParcelerObj.class);
String str = gson.toJson(parcelerObj);
但是,我不确定从哪里开始使用 SimpleXML。我目前有以下 SimpleXML class:
@Root(name="point")
@Order(attributes={"lat", "lon", " alt"})
public class SensorLocation {
@Attribute
private double lat;
@Attribute
private double lon;
@Attribute
private double alt;
public SensorLocation (
@Attribute(name="lat") double lat,
@Attribute(name="lon") double lon,
@Attribute(name="alt") double alt
) {
this.lat = lat;
this.lon = lon;
this.alt = alt;
}
}
这个class然后可以序列化成下面的XML
<point lat="10.1235" lon="-36.1346" alt="10.124"/>
使用以下代码:
SensorLocation sl = new SensorLocation (10.1235, -36.1346, 10.124);
Serializer s = new Persister();
ByteArrayOutputStream out = new ByteArrayOutputStream();
s.write(sl, out);
我目前有一个奇怪的要求,即保持 XML 属性和元素的特定顺序。这就是我使用 @Order
.
Parceler 如何与 SimpleXML 一起工作?我会将 Parceler 实例传递给 Serializer.write() 吗?
如果有人能给我指点资源,我可以自己研究。我只是找不到任何起点。
这是一个同时支持 SimpleXML 和 Parceler 的 bean 示例:
@Parcel
@Root(name="point")
@Order(attributes={"lat", "lon", " alt"})
public class SensorLocation {
@Attribute
private double lat;
@Attribute
private double lon;
@Attribute
private double alt;
@ParcelConstructor
public SensorLocation (
@Attribute(name="lat") double lat,
@Attribute(name="lon") double lon,
@Attribute(name="alt") double alt
) {
this.lat = lat;
this.lon = lon;
this.alt = alt;
}
}
值得注意的是,Parceler 的这种配置将使用反射来访问您的 bean 的字段。使用非私有字段将避免警告和轻微的性能影响。
用法:
SensorLocation sl = new SensorLocation (10.1235, -36.1346, 10.124);
Parcelable outgoingParcelable = Parceler.wrap(sl);
//Add to intent, etc.
//Read back in from incoming intent
Parcelable incomingParcelable = ...
SensorLocation sl = Parceler.unwrap(incomingParcelable);
Serializer s = new Persister();
ByteArrayOutputStream out = new ByteArrayOutputStream();
s.write(sl, out);
因为 Parceler 不会在您的 bean 中引入任何代码,您可以随意使用它。