jsp 구현 help 클릭 chm 파일 열기

756 단어 chm 파일
문제 처리 설명:현재 자바 웹 프로젝트 가 있 습 니 다.portal 에서 help 를 클릭 하면"help.chm"파일 을 열 수 있 습 니 다.
현재 검색 바 이 두 는 유사 한 사례 가 없습니다.자신 이 방법 을 생각해 냈 습 니 다.jsp 를 통 해 이 루어 집 니 다.
jsp 메 인 인터페이스 파일

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

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

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

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

좋은 웹페이지 즐겨찾기