我正在使用XSLT
生成一些代码,但生成的源应该本地化为一组不同的文件。是否有工具/格式(基于XML?)可用于以jar / ar / tar类格式存储文件。我在考虑这样的事情:
<?xml version="1.0"?>
<archive>
<file path="test/Test01.java" content-type="plain-text" checksum="something">
package test;
public class Test01
{
}
</file>
<file path="test/data.properties" content-type="plain-text" checksum="something">
prop1=value1
</file>
</archive>
更新 所以我想生成这种XML存档: 使用
xsltproc xml2java.xslt my-structure-defined-as-xml.xml > myarchive.xml
或
my-xar-tool cvf myarchive.xml test/data.properties test/Test01.java
#adding test/data.properties
#adding test/Test01.java
并提取此档案的内容:
my-xar-tool xvf myarchive.xml
#extracting test/data.properties
#extracting test/Test01.java
是否已存在描述此类存档的现有XML架构?