This is the code I am using in my JSP to render PDF file
FileInputStream fis = new FileInputStream(path);
int b = 0;
while ((b = fis.read()) != -1)
{
out.write(b);
}
Path contains location of PDF file stored on local disk. Problem: Its rendering stupid text. I could not even figure out what it is.
Any help is appreciated. What code to add/modify