有没有办法知道我的电脑上使用'Java'的MS-Office版本?
答案 0 :(得分:2)
我建议你做一些棘手的工作:
您可以轻松获取已安装字体的列表。不同版本的MS-Office具有不同的独特字体。你需要谷歌哪些字体对应哪个版本,它可以给你一些信息(例如,如果你可以看到'Constantia',那么它的办公室2007年)。
答案 1 :(得分:1)
ms office安装中是否有特定文件区分一个版本?如果是,你可以阅读并检测。
其他你必须与可能安装的(到o / s)ms office activex控件进行讨厌的接口并查询版本号。
答案 2 :(得分:1)
一种方法是调用Windows ASSOC和FTYPE命令,捕获输出并解析它以确定安装的Office版本。
C:\Users\me>assoc .xls
.xls=Excel.Sheet.8
C:\Users\me>ftype Excel.sheet.8
Excel.sheet.8="C:\Program Files (x86)\Microsoft Office\Office12\EXCEL.EXE" /e
Java代码:
import java.io.*;
public class ShowOfficeInstalled {
public static void main(String argv[]) {
try {
Process p = Runtime.getRuntime().exec
(new String [] { "cmd.exe", "/c", "assoc", ".xls"});
BufferedReader input =
new BufferedReader
(new InputStreamReader(p.getInputStream()));
String extensionType = input.readLine();
input.close();
// extract type
if (extensionType == null) {
System.out.println("no office installed ?");
System.exit(1);
}
String fileType[] = extensionType.split("=");
p = Runtime.getRuntime().exec
(new String [] { "cmd.exe", "/c", "ftype", fileType[1]});
input =
new BufferedReader
(new InputStreamReader(p.getInputStream()));
String fileAssociation = input.readLine();
// extract path
String officePath = fileAssociation.split("=")[1];
System.out.println(officePath);
//
// output if office is installed :
// "C:\Program Files (x86)\Microsoft Office\Office12\EXCEL.EXE" /e
// the next step is to parse the pathname but this is left as an exercise :-)
//
}
catch (Exception err) {
err.printStackTrace();
}
}
}