如何在Obj到XML的序列化中跳过对象的某些字段。
代码为here
答案 0 :(得分:2)
答案 1 :(得分:1)
使用'transient'关键字标记要跳过的字段。基于代码的示例:
public class Foo
{
public transient int a;
public String b;
public Bar boo;
public Foo(int a, String b, Bar c)
{
this.a = a;
this.b = b;
this.boo = c;
}
}
属性a不会被序列化为XML。