tenho uma pasta com 20 figuras e quero fazer um Servlet que pegue o nome de todos os arquivos e coloque na pagina …
ja tentei usando a classe File mas n consegui…
alguem poderia me ajudar?
public void doAction(HttpServletRequest request, HttpServletResponse response ) throws IOException, ServletException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
File dir = new File("c:\\subdir");
String[] arqs = dir.list();
for(int i = 0; i < arqs.length; i++){
out.println("<br>" + arqs[i]);
}
}
Salve,
tu podes utilizar o commons net da Apache, fica mais fácil e mais bem feito.
até mais.
:okok: