首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >使用SMOOKS生成EDI文件

使用SMOOKS生成EDI文件
EN

Stack Overflow用户
提问于 2012-02-24 16:53:28
回答 1查看 2.9K关注 0票数 25

如何使用SMOOKS将XML文件转换为EDI文件?

我能够将EDI转换为XML,实际上这是SMOOKS提供的示例的一部分。

EN

回答 1

Stack Overflow用户

发布于 2016-02-12 01:58:14

基于你的问题,我试着做了一些研究。请检查它是否对您有帮助。

下面是要转换的源文件:

HDR*1*0*59.97*64.92*4.95*Wed Nov 15 13:45:28 EST 2006
CUS*user1*Harry^Fletcher*SD
ORD*1*1*364*The 40-Year-Old Virgin*29.98
ORD*2*1*299*Pulp Fiction*29.99

,这是我们转换的预期结果:

<Order>
    <header>
            <order-id>1</order-id>
            <status-code>0</status-code>
            <net-amount>59.97</net-amount>
            <total-amount>64.92</total-amount>
            <tax>4.95</tax>
            <date>Wed Nov 15 13:45:28 EST 2006</date>
    </header>
    <customer-details>
            <username>user1</username>
            <name>
                    <firstname>Harry</firstname>
                    <lastname>Fletcher</lastname>
            </name>
            <state>SD</state>
    </customer-details>
    <order-item>
            <position>1</position>
            <quantity>1</quantity>
            <product-id>364</product-id>
            <title>The 40-Year-Old Virgin</title>
            <price>29.98</price>
    </order-item>
    <order-item>
            <position>2</position>
            <quantity>1</quantity>
            <product-id>299</product-id>
            <title>Pulp Fiction</title>
            <price>29.99</price>
    </order-item>
</Order>

对Smooks配置执行操作

我们只需指定SmooksEDIParser 作为流解析器。可以添加更多的转换配置来进一步转换此消息。配置如下(“smooks config.xml”):

<?xml version="1.0"?>
<smooks-resource-list xmlns="http://www.milyn.org/xsd/smooks-1.1.xsd"
                  xmlns:edi="http://www.milyn.org/xsd/smooks/edi-1.1.xsd">

<!--
Configure the EDI Reader to process the message stream into a stream of SAX events.
-->
<edi:reader mappingModel="/example/edi-to-xml-order-mapping.xml" />

</smooks-resource-list>

这是("/src/main/java/example/edi-to-xml-order-mapping.xml"):的映射

<?xml version="1.0" encoding="UTF-8"?>
<medi:edimap xmlns:medi="http://www.milyn.org/schema/edi-message-mapping-1.0.xsd">
<medi:description name="DVD Order" version="1.0" />
<medi:delimiters segment="&#10;" field="*" component="^" sub-component="~" />
<medi:segments xmltag="Order">
    <medi:segment segcode="HDR" xmltag="header">
        <medi:field xmltag="order-id" />
        <medi:field xmltag="status-code" />
        <medi:field xmltag="net-amount" />
        <medi:field xmltag="total-amount" />
        <medi:field xmltag="tax" />
        <medi:field xmltag="date" />
    </medi:segment>
    <medi:segment segcode="CUS" xmltag="customer-details">
        <medi:field xmltag="username" />
        <medi:field xmltag="name">
            <medi:component xmltag="firstname" />
            <medi:component xmltag="lastname" />
        </medi:field>
        <medi:field xmltag="state" />
    </medi:segment>
    <medi:segment segcode="ORD" xmltag="order-item" maxOccurs="-1">
        <medi:field xmltag="position" />
        <medi:field xmltag="quantity" />
        <medi:field xmltag="product-id" />
        <medi:field xmltag="title" />
        <medi:field xmltag="price" />
    </medi:segment>
</medi:segments>
</medi:edimap>

执行转换的:

// Instantiate Smooks with the config...
Smooks smooks = new Smooks("smooks-config.xml");

try {
// Filter the input message to the outputWriter...
smooks.filterSource(new StreamSource(messageIn), new
StreamResult(messageOut));
} finally {
smooks.close();
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9427887

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档