由于 vfszip 协议,读取 JBoss 5 上的目录时出错
我需要解析网络应用程序中的许多文件。
这些文件位于 .war 文件顶层的目录(称为“edms”)中。 当我尝试获取目录句柄进行处理时,我收到错误,因为返回的资源是 vfszip 协议类型。
例如,当我使用 MyClass.class.getResource("/edms") 时,我会得到类似“vfszip:C:/jboss/server/default/deploy/MyWar.war/edms”的信息。
如果我随后将此 URL 与 File 对象一起使用,则会失败,因为它找不到底层目录及其包含的文件。
我已经考虑过使用 Spring ResourceUtils 类,但似乎无法让他们给我什么,即能够:-
- 获取目录的句柄(在我的 .war 文件中)
- 循环中的每个文件目录 - 阅读并解析其内容
有什么想法吗?
谢谢莎拉
I need to parse a number of files in my web application.
The files are sitting in a directory (called "edms") at the top level of my .war file.
When I try to get a handle on the directory for processing I get errors as the resource returned is of vfszip protocol type.
For example, when I use MyClass.class.getResource("/edms") I get back something like "vfszip:C:/jboss/server/default/deploy/MyWar.war/edms".
If I then use this URL with File objects it fails as it cannot find the underlying directory and the files it contains.
I've looked at using the Spring ResourceUtils class but can't seem to get them to give me what I was which is to be able to :-
- Get a handle on the directory (within my .war file)
- Loop round each file in the directory - reading and parsing it's contents
Any ideas?
Thanks
Sarah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为一种黑客,如果您只是
substring
MyClass.class.getResource("/edms")
返回的协议部分,并使用它的其余部分,会发生什么new File(...)
语句?As a hack, what happens if you just
substring
the protocol part of whatMyClass.class.getResource("/edms")
returns away, and use the rest of it in anew File(...)
statement?有一些可能的解决方案:
希望这有帮助,
马吕斯
There are a few possible solution to this:
Hope this helps,
Marius