欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jsp實(shí)現(xiàn)點(diǎn)擊help打開chm文件

 更新時(shí)間:2014年09月05日 18:04:09   投稿:whsnow  
有個(gè)javaweb項(xiàng)目,需要在portal上面點(diǎn)擊help即可打開“幫助.chm”文件,下面與大家分享下jsp如何打開chm文件

處理問題描述:現(xiàn)在我有個(gè)javaweb項(xiàng)目,需要在portal上面點(diǎn)擊help即可打開“幫助.chm”文件;

當(dāng)前搜索百度沒有類似案例,自己想了個(gè)辦法,通過jsp實(shí)現(xiàn):

jsp主界面文件

<a href="#" onclick="javascript:$.getJSON('<%=path %>/admin/openYACShelp.jsp?req='+new Date(),function(json) {});"
id="openYACShelp">幫助</a>

openYACShelp.jsp文件

<%
String ch1="/";
String ch2="http://";

String contextPath = System.getProperty("user.dir");
String helpFilePath = contextPath + "/yacs/幫助.chm";

Runtime.getRuntime().exec("hh.exe "+helpFilePath.replaceAll(ch1,ch2)); %>

相關(guān)文章

最新評論