将修复消息转换为单独的属性

发布于 2024-11-10 17:59:24 字数 126 浏览 5 评论 0原文

我收到了一条修复消息,我需要提取单个属性。当前是否有任何带有附加修复功能的 Java jar 或 lib。目前正在查看 QuickFIX/J 然而,这似乎更侧重于发送和接收 FIX 消息。有没有人有将 FIX 消息翻译为其各种对象的经验。

I have a fix msg coming in which I need to extract the invdividual attributes. Is there any Java jars or libs currently out there with added fix functionality. Currently looking over QuickFIX/J This however seems to be more focused on send and receiving the FIX msgs. Has anyone any experience in work with translating a FIX msg to it's various objects.

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

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

发布评论

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

评论(2

空城之時有危險 2024-11-17 17:59:24

每个消息类都有一组函数来提取消息和标准中的字段。示例类 MassQuote

有一些命名的 get 方法可以返回字段。否则,您可以使用通用 getField 返回字段属性。对于组,首先获取组的数量,然后迭代消息并使用 getGroup 方法提取所有组。

Every message class has a set of functions to extract the fields in the message and standard. An example class MassQuote.

There are named get methods which return you the field. Else you can use the generic getField to return you the field attribute. In case of groups, first get the number of groups and then iterate over the message and use the getGroup method, to extract all groups.

狼性发作 2024-11-17 17:59:24

MessageUtilsgetStringField 和看起来很有用的 parse 方法

MessageUtils have getStringField and parse methods which look useful

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