I'm actually using this code to print an HTML file in my JSP from a "not available" folder on my server (I mean that if I'm writing the correct URL of my files, I can't view them on my browser):\[code\]InputStreamReader isr = new InputStreamReader(new FileInputStream(request.getParameter("path")));BufferedReader br = new BufferedReader(isr); String line = br.readLine();while(line!=null){ out.println(line); line = br.readLine();}\[/code\]In "path" there is my file's URL. This actually works, but it shows my HTML file in the same page where I launch this piece of code. I actually need to do this on a new page, like when you set this HTML A tag in this way:\[code\]<a href="http://stackoverflow.com/questions/14053331/www.mywebsite.com" TARGET="_new">LINK</a>\[/code\]