XSteream Java Obj 到 XML 跳过一些字段

发布于 2024-09-18 22:56:45 字数 154 浏览 4 评论 0原文

如何在将 Obj 序列化为 XML 时跳过对象的某些字段。

代码位于此处

How to skip certain fields of object in serialization of Obj to XML.

code is here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海少女心 2024-09-25 22:56:45

来自 Xtream

如何指定字段应该
不连载吗?

使其暂时,指定为
XStream.omitField() 或对其进行注释
与@XStreamOmitField

尝试 www.google.com

From Xtream

How do I specify that a field should
not be serialized?

Make it transient, specify it with
XStream.omitField() or annotate it
with @XStreamOmitField

Try www.google.com

明明#如月 2024-09-25 22:56:45

使用“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。

Mark the fields to skip with the 'transient' keyword. Example based on your code:

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;
    }
}

The property a will not be serialized to XML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文