Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 Costumer 的类,它将客户数据作为输入,并以 XML 格式输出一个复杂类型,其中包含许多标签,如地址、邮政、电话。
在我的主要功能中,我创建了一个名为 C1 的客户对象的成功实现,并将其作为编组参数传递,并按预期查看 XML 输出。
我的问题是,如果我想添加另一个客户 C2,那么什么是有效的实施方式。Obvioulsy 我无法创建 ArrayList 。因为 marshall 参数不将 ArrayList 作为参数。
谢谢你。
您想生成带有客户元素列表的 XML?您需要另一种类型来表示您的列表,并且您还需要注释该类型。然后构造一个“列表类型”的实例并对其进行编组。