.NET 中的 EDI 解析器
有人创建过读取和解析 EDI 文件的 .NET 应用程序吗?
EDI 文件 - 航运业使用它来提供货运发票信息。
Has anyone created a .NET application that reads and parses an EDI file?
EDI file - used by shipping industries to provide information on shipment invoice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
用于 dotnet 的免费开源 Edi 序列化器是 EDI.Net。它支持 X12、EdiFact 以及英国独有的 TRADACOMS 格式。它甚至适用于
dotnetcore
和NetStandard 1.0
*免责声明我编写了该库
An Edi Serializer for dotnet that is free and opensource is EDI.Net. It supports X12, EdiFact as well as the UK only TRADACOMS formats. It even works on
dotnetcore
andNetStandard 1.0
*disclaimer I wrote the library
查看 Codeplex 上的 EDIFabric
http://edifabric.codeplex.com/
ediFabric 是一个用于转换 EDI 文档的 .NET 库 (.dll)到 .NET 对象(或 XML),反之亦然。 EDI 文档规则表示为 .NET 类。每种 EDI 消息类型都有一个类(.cs 文件)。
Check out EDIFabric on codeplex
http://edifabric.codeplex.com/
ediFabric is a .NET library (.dll) to convert EDI documents to .NET objects (or XML) and vice verse. EDI document rules are represented as .NET classes. There is one class (.cs file) per every EDI message type.
EDIParser for .NET 是另一个很好的 edi 解析器,它是用 .NET 编写的。尝试 http://www.sparrow-technologies.com/ediparser.net.aspx
EDIParser for .NET is another good edi parser and it written in .NET. Try http://www.sparrow-technologies.com/ediparser.net.aspx
那里有很多,但据我所知没有一个是免费的。尝试 http://www.edidev.com/FullPriceList.htm
他们已经存在了一段时间了。
There are a bunch out there, but none that I'm aware of for free. Try http://www.edidev.com/FullPriceList.htm
They've been around awhile.