Código:
Mi pregunta en concreto es entonces ¿como lo hago para mostrar el archivo txt q me permite leer esta clase java pero en una tabla html en jsp?import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.FileNotFoundException; import java.io.IOException; public class Readfile { public static void main(String[] args) { File file = new File("test.txt"); StringBuffer contents = new StringBuffer(); BufferedReader reader = null; try { reader = new BufferedReader(new FileReader(file)); String text = null; // repeat until all lines is read while ((text = reader.readLine()) != null) { contents.append(text) .append(System.getProperty( "line.separator")); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (reader != null) { reader.close(); } } catch (IOException e) { e.printStackTrace(); } } // show file contents here System.out.println(contents.toString()); } }
porfavor si alguien tiene un ejemplo en codigo q me pueda ayudar para imprimir el contenido del txt en la pagina jsp se lo agradeceria mucho.... de antemano gracias... bye