我想使用骆驼将 .xml 文件创建到 csv 文件中。这是我的代码
CamelContext context = new DefaultCamelContext();
from("file://Input?fileName=test.xml").marshal().csv().to("file://test?fileName=test.csv");
context.start();
但它没有在所需的文件夹“test”中创建任何文件。
我想使用骆驼将 .xml 文件创建到 csv 文件中。这是我的代码
CamelContext context = new DefaultCamelContext();
from("file://Input?fileName=test.xml").marshal().csv().to("file://test?fileName=test.csv");
context.start();
但它没有在所需的文件夹“test”中创建任何文件。
请多花一点时间在 Camel 文档上,尝试示例,并阅读常见问题解答。还有介绍文章之类的。
上面的代码甚至无效,因为您需要将它放在 RouteBuilder 中。
此外,当您启动 CamelContext 时,请阅读 start 方法的 javadoc。并阅读此常见问题解答 http://camel.apache.org/running-camel-standalone-and-have-it-keep-running.html
Camel 还提供了一个跟踪器,因此您可以在处理消息时看到消息流。跟踪器将默认以 INFO 级别将此记录到记录器。 http://camel.apache.org/tracer
这是使用骆驼的示例
<camelContext xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="file:src/xmldata?noop=true"/>
<to uri="xslt:file:src/main/fruits.xslt"/>
<to uri="file://TESTOUT?fileName=output.csv"/>
</route>
</camelContext>
src/xmldata 文件夹中的示例 xml 文件
<AllFruits xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- All fruits below. -->
<Fruit>
<FruitId>Bannana</FruitId>
<FruitColor>Yellow</FruitColor>
<FruitShape>Moon</FruitShape>
<Customer>
<Name>Joe</Name>
<NumberEaten>5</NumberEaten>
<Weight>2.6</Weight>
</Customer>
<Customer>
<Name>Mark</Name>
<NumberEaten>8</NumberEaten>
<Weight>5.0</Weight>
</Customer>
</Fruit>
</AllFruits>
src/main/fruits.xslt
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text" encoding="ISO-8859-1" />
<xsl:variable name="newline" select="'
'"/>
<xsl:template match="Fruit">
<xsl:for-each select="Customer">
<xsl:value-of select="preceding-sibling::FruitId" />
<xsl:text>,</xsl:text>
<xsl:value-of select="NumberEaten" />
<xsl:text>,</xsl:text>
<xsl:value-of select="Weight" />
<xsl:value-of select="$newline" />
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>