I'm sure this is simple but I'm usually in PHP and having some difficulty getting used to JSP. I just need the filenames but I get the error listed below
File jsp = new File("/home/www/contents/testing/images/thing");
String f = "";
File[] list = jsp.listFiles();
for(int i=0;i<list.length;i++)
{
f = list[i].split("/");
out.println(f[6]);
}
tomcat error:
The method split(String) is undefined for the type File