如何调用.chm帮助文件

来源:互联网 发布:医学 教学 仿真软件 编辑:程序博客网 时间:2024/04/28 17:00

import java.io.*;

public class Test
{
    public static void main(String args[])
    {
    try
            {  
                Process pro=Runtime.getRuntime().exec("hh.exe j2seAPI.chm");
            }
            catch(Exception ec)
            {}
    }