我一直在论坛上阅读如何阅读/编辑档案中的文件,但仍然无法得到我的答案。主要使用getResourceAsStream,并且必须在其类路径中。
我需要做的是,使用给定的文件路径作为输入读取和更新xml文件,然后将其重新部署到Tomcat。 但到目前为止,我还是无法回答如何使用给定的完整路径作为输入编辑WAR归档内的AAR文件中的xml文件。有人能帮帮我吗?
例如,我想编辑applicationContext.xml文件:
C:/webapp.WAR
来自webapp.WAR文件:
webapp.WAR / WEB-INF /服务/ myapp.AAR
来自myapp.AAR:
myapp.AAR / applicationContext.xml的
答案 0 :(得分:5)
您无法修改任何?AR文件(WAR,JAR,EAR,AAR,...)中包含的文件。它基本上是一个zip存档,修改它的唯一方法是解压缩,进行更改,然后再将其压缩。
如果您正在尝试让正在运行的应用程序进行自我修改,那么可以认识到:1)由于各种原因,许多容器都是从?AR文件的爆炸副本运行的; 2)它不太可能对修改文件有任何好处无论如何,除非您计划在更改后重新启动应用程序,或者编写大量代码来监视更改并在以后以某种方式刷新应用程序,否则无论如何都要动态。无论哪种方式,您最好不要尝试以编程方式进行所需的更改,而不是尝试重写正在运行的应用程序。
另一方面,如果您不是在谈论让应用程序自行修改而是改变WAR文件然后部署新版本,那就是我上面所说的。使用jar
工具将其分解,修改展开的目录,然后使用jar
再次压缩它。然后像新的war文件一样部署它。
答案 1 :(得分:1)
You can edit a war as follow,
//You can loop through your war file using the following code
ZipFile warFile = new ZipFile( warFile );
for( Enumeration e = warFile.entries(); e.hasMoreElements(); )
{
ZipEntry entry = (ZipEntry) e.nextElement();
if( entry.getName().contains( yourXMLFile ) )
{
//read your xml file
File fXmlFile = new File( entry );
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
/**Now write your xml file to another file and save it say, createXMLFile **/
//Appending the newly created xml file and
//deleting the old one.
Map<String, String> zip_properties = new HashMap<>();
zip_properties.put("create", "false");
zip_properties.put("encoding", "UTF-8");
URI uri = URI.create( "jar:" + warFile.toUri() );
try( FileSystem zipfs = FileSystems.newFileSystem(uri, zip_properties) ) {
Path yourXMLFile = zipfs.getPath( yourXMLFile );
Path tempyourXMLFile = yourXMLFile;
Files.delete( propertyFilePathInWar );
//Path where the file to be added resides
Path addNewFile = Paths.get( createXMLFile );
//Append file to war File
Files.copy(addNewFile, tempyourXMLFile);
zipfs.close();
}
}
}