vote up 0 vote down star

I've got a folder in my Web Application, fonts. I'd like to get the path for each of those files in that directory. How do I do that? In asp.net I'd do something like:


 System.IO.Directory.GetFiles(Server.MapPath("/fonts"))
flag

3 Answers

vote up 2 vote down check
String path = ServletContext.getRealPath("/fonts");

Javadoc.

link|flag
vote up 0 vote down

You can use method getResourcePaths(String path) from ServletContext class for this purpose. It will return Set with directory-style listing of resources for specified (web-application mapped) path.

If you want to read content of file specified by mapped path, you can use method getResourceAsStream() from ServletContext returning InputStream for specified resource.

link|flag
vote up -1 vote down
java.io.File dir = new java.io.File("/fonts");
String[] files = dir.list();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.