
I am new to java and want to make an simple web application where user can see exel file from my system by jsp, am using jdk, netbeans, tomcat and mysql server

Hello Friend,
If you want to view the file then try the following code in your jsp page:
try{
Runtime.getRuntime().exec("cmd /c start C:/hello.xls");
}
catch(Exception e){
System.out.println(e);
}
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.