如题:谢谢。

解决方案 »

  1.   

    office2000用户想安装在那都可以,用相对路径也不好使阿,
    你只能是有一个配置文件保存office2000的绝对路径,然后在java中启动这个exe文件,如果没找到就提示用户,让用户去找到这个exe,然后你保存到那个配置文件。excelDirectory = SystemProperties.props.getProperty("excelDirectory");
          if (!Misc.isHaveFile(excelDirectory)) {
            JOptionPane.showMessageDialog(parent, "读取Excel.exe失败!", "提示",
                        JOptionPane.WARNING_MESSAGE);
            String newDir = Misc.FileChooserDialog();
            SystemProperties.props.setProperty("excelDirectory",newDir);
          }
          try {
            Runtime.getRuntime().exec(
                excelDirectory + "  " + new File(fileName).toURL());
           
          }
          catch (IOException e) {
          }