如何使用 Simple XML lib(版本2.6.5 / 2.6.6)序列化 java.util.concurrent.TimeUnit ?
这是我想要序列化的课程:
@Root(name="settings")
public class Config
{
// some more code
@Element(name="timeunit", required=true)
private static final TimeUnit timeunit = TimeUnit.SECONDS;
// some more code
}
使用简单:
File f = // ...
Config cfg = new Config();
Serializer ser = new Persister();
ser.write(cfg, f);
我得到了这个例外:
org.simpleframework.xml.transform.TransformException: Transform of class java.util.concurrent.TimeUnit$4 not supported
到目前为止,我测试了其他注释,如@Default,但同样的问题。想知道为什么Simple有TimeUnits的问题 - 所有其他类型(类/原始类型)都没有任何问题。
答案 0 :(得分:1)
这是一个可能的解决方案:
<强>注释:强>
@Element(name="timeunit", required=true)
@Convert(TimeUnitConverter.class)
private static final TimeUnit timeunit = TimeUnit.SECONDS;
<强>转换器:强>
public class TimeUnitConverter implements Converter<TimeUnit>
{
@Override
public TimeUnit read(InputNode node) throws Exception
{
return TimeUnit.valueOf(node.getValue().toUpperCase());
}
@Override
public void write(OutputNode node, TimeUnit value) throws Exception
{
node.getAttributes().remove("class"); /* Not required */
node.setValue(value.toString().toLowerCase());
}
}