博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用java代码打开chm格式的帮助文档
阅读量:5259 次
发布时间:2019-06-14

本文共 814 字,大约阅读时间需要 2 分钟。

 

package com.guan.code20160405;

import java.io.File;

import java.io.IOException;

public class OpenHelpFile {

public static void main(String[] args) {

/**

*我把五子棋文档1.0.chm放在和项目同目录下的projectFile文件夹下

*/

String ch1="/";
String ch2="//";
//找到项目的根路径
String contextPath = System.getProperty("user.dir");
File file=new File(contextPath);
String p = file.getParent();
file = new File(p + "/projectFile");
System.out.println("path===="+file.getPath());
System.out.println("parent==="+file.getParent());
String helpFilePath = p + "/projectFile/五子棋文档1.0.chm";
try {

//hh.exe是Windows系统中允许chm文件的程序

Runtime.getRuntime().exec("hh.exe "+helpFilePath.replaceAll(ch1,ch2));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

}

运行,成功打开“五子棋文档1.0.chm”文件。

转载于:https://www.cnblogs.com/gwq369/p/5358091.html

你可能感兴趣的文章
磁盘测试工具
查看>>
代码变量、函数命名神奇网站
查看>>
redis cli命令
查看>>
Problem B: 占点游戏
查看>>
python常用模块之sys, os, random
查看>>
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
使用 SharedPreferences 分类: Andro...
查看>>
TLA+(待续...)
查看>>
题解: [GXOI/GZOI2019]与或和
查看>>
MacOS copy图标shell脚本
查看>>
国外常见互联网盈利创新模式
查看>>
Oracle-05
查看>>
linux grep 搜索查找
查看>>
Not enough free disk space on disk '/boot'(转载)
查看>>
android 签名
查看>>