首页 > 代码库 > 2014 项目中用到batik

2014 项目中用到batik

现在手头上的项目用到batik编程,用的maven管理jar包,要在pom.xml中dependencies标签下添加一下配置(batik编程使用的顶层jar包)

<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-codec</artifactId>
<version>1.7</version>
</dependency>

 

这个问题一直在找,,现在知道了这个是顶层的所以记录下来,以备不时之需。有需要的可是试试。

2014 项目中用到batik