在JSP頁面中這樣寫:
Jsp代碼
<a href= ".../test1.doc "> open the word </a>
<a href= ".../test2.xls "> open the excel </a>
在web.xml裡面加上下面兩句:
Xml代碼
<mime-mapping>
<extension>doc</extension>
<mime-type>application/vnd.ms-word</mime-type>
</mime-mapping>
<mime-mapping>
<extension>xls</extension>
<mime-type>application/vnd.ms-excel</mime-type>
</mime-mapping>
,