如何将 SelfDescribingMarshallables 列表序列化为 CSV
How to serialize a list of SelfDescribingMarshallables to CSV
我需要使用 Chronicle Wire 逐行序列化与 CSV 输出类型相同的 SelfDescribingMarshallable 列表。但是 net.openhft.chronicle.wire.WireType#CSV
为每个对象字段生成一行,因此它不是 CSV。
有代码示例吗?
不幸的是,WireType#CSV
目前无法正常工作,因为我们没有任何动力来支持它。
但是,仍然可以通过 BytesMarshallable
(而不是 SelfDescribingMarshallable
)使用低级 CSV 编组,请参见示例 here
我需要使用 Chronicle Wire 逐行序列化与 CSV 输出类型相同的 SelfDescribingMarshallable 列表。但是 net.openhft.chronicle.wire.WireType#CSV
为每个对象字段生成一行,因此它不是 CSV。
有代码示例吗?
WireType#CSV
目前无法正常工作,因为我们没有任何动力来支持它。
但是,仍然可以通过 BytesMarshallable
(而不是 SelfDescribingMarshallable
)使用低级 CSV 编组,请参见示例 here