
how to open a document in read only mode by clicking on a hyperlink

1)openexcel.jsp
<a href="excelFile.jsp">Open Excel File</a>
2)excelFile.jsp:
<%
try{
Runtime rt = Runtime.getRuntime();
rt.exec("cmd.exe /C start C:\\data.xls");
}catch ( Exception ex ){
System.out.println(ex);
}
%>