Anakia 转换xml文档为其他格式

一.简介
Anakia 使用JDOM 和Velocity将XML文档转换为特定格式的文档

二.解析xml文档方法

1.DOM

java jdk,xml-api.jar
需要加载整个xml文档来构建层次结构

2.SAX(Simple API for XML)

基于事件模型,不需要读取整个xml文档

3.JDOM(Java-based Document Object Model)

本身不包含解析器,通常使用SAX2解析器来解析和验证输入XML文档。

4.DOM4J
性能佳

http://www.cnblogs.com/lanxuezaipiao/archive/2013/05/17/3082949.html

三.构建velocity

准备:

1.download ant
http://ant.apache.org/bindownload.cgi

配置ANT 环境变量

2.build
一开始参考官网的这篇文档https://velocity.apache.org/engine/devel/build.html
在velocity1.7 上面做的实验,出现了很多错误,错误记录在四。
- download velocity1.5

  • 编辑 test.xml文件,放在examples\anakia\xdocs\about 目录下
    可以添加 html tag。

    <document>
        <properties>
            <author email="st3690@163.com">FS</author>
            <title>Welcome</title>
        </properties>
    <body>
      <section name="Section 1">
        <p>
            welcome to velocityLearning github
        </p>
        <img src="/images/velocity.gif" width="329" height="105"/>
        <p>you can add html tag</p>
      </section>
      <section name="Section 2">
        <p> here is another section </p>
      </section>
      <section name="section 3">
        <p><a href="https://github.com/FS1360472174/velocityLearning">
            you can access this repository for more learning in github</a>
        </p>
      </section>
    </body>
    </document>
    
  • cd examples/anakia/build 执行 ant 命令。

就会在examples\anakia\docs\about 目录生成test.html

这边官网的velocity1.5 目录有点问题。根据错误信息修改了build.xml.将classpath 修改成只从lib目录读取

    <path id="classpath">
        <fileset dir="../../../lib">
            <include name="**/*.jar"/>
        </fileset>
    </path>

具体查看github

四.velocity1.7的错误记录
- download maven
download:http://maven.apache.org/download.cgi
配置环境变量。
mvn -v 成功表示安装成功

  • 在velocity/build 目录下执行

-> mvn install

报了这样的错误:”The goal you specified requires a project to execute but there is no POM in this directory” while doing Maven install.
缺少pom.xml

解决:
http://svn.apache.org/repos/asf/velocity/engine/tags/1.7/pom.xml
再次执行仍然报错,download错误,怀疑是网络问题,加上 -X debug 信息。这次成功build success.
在build下面 创建一个target 文件夹

  • 在example/anakia/build 目录下面执行

->ant

发现1.7版本下面根本就没有这个目录,最后在1.5目录下面找到了这个。

五.总结
其实利用Anakia将xml文件转换为特定的文档格式很简单,但是官网的文档貌似很久没有更新。velocity不同版本
的目录记录貌似也有些差异。所以给开发者使用,造成了一定的阻碍,耽误了学习的时间。

从三,四步骤看来,利用maven build整个velocity似乎也没有必要。我们只用利用ant工具,调用
anakia task即可。不知道为什么官网的说明文档强调必须要有这步骤。

所有源码可以在这里找到:
https://github.com/FS1360472174/velocityLearning/anakia

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

方丈的寺院

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值