I have an application that is deployed on a WebSphere 6.1.0.25 server. I am trying to get a directory listing of available files from a directory in my WebContent folder:
MyApp/WebContent/MyImages/img1.gif
MyApp/WebContent/MyImages/img2.gif
MyApp/WebContent/MyImages/img3.gif
...
The reason for this is that I want to build a map of available images to quickly be able to answer if a link should be visible on a certain page.
I can retrieve the ServletContext in my Action class.
My first plan was to use ServletContext.getRealPath() and work from there, but a bug in WebSphere <6.1.0.43 makes that approach impossible (not sure if it would have worked otherwise, but all the answers I find online point me in that direction). What happens is that I get an URL back in the form someDir/MyEar.ear/MyWar.war, which isn't useful at all in this scenario.
I have since tried ServletContext.getResourcePaths("/MyImages"), but that didn't work either, I just get an empty set as result.
I also tried getting another ServletContext via ServletContext.getContext(MyAppPath), but that didn't change anything.
I am using Struts 1.2.9 and Java EE 1.5.
I know these are all old versions, but my company isn't very good at keeping up to date, and unfortunately upgrading is not an option.
Can anyone give me an idea on how to be able to get the directory listing?
getRealPath()first, and that failed? The reason I ask is that the link you posted only seems relevant if you're using the extendedDocumentRoot. Are you using that? – dbreaux Oct 23 '12 at 22:15new File(documentRoot)... of course, the solution would be to install the latest WAS fixpack. – home Oct 24 '12 at 4:33getRealPath(), and I getsomeDir/MyEar.ear/MyWar.warback, which isn't very useful. I'm not entirely sure if it is because of the bug or not. – Keppil Oct 24 '12 at 4:54MyEar.ear/MyWar.war. I was assuming your directory path is under that? – dbreaux Oct 24 '12 at 14:47