我只是尝试从互联网上自动打开.doc的许多代码,这些代码以PDF格式附加但是我得到了:“无法打开应用程序类型/ msword”
我试过了:
int n;
int c=0;
int x0,y0;
HashSet<Double> equations;
Seqreader read = new Seqreader(" ");
n=read.nextInt();
x0 = read.nextInt();
y0 = read.nextInt();
equations = new HashSet<Double>();
for(int i=0;i<n;i++){
int x = read.nextInt();
int y = read.nextInt();
if (x == x0) {
equations.add(20000.0);
}else {
double d = (double)(y-y0)/(x-x0);
if(y == y0 && d == 0.0) {
equations.add(0.0); // if add(d) output is different
}
else
equations.add(d); // != 0
}
}
System.out.println(equations.size());
我试图找到另一个指定文档类型的函数,并且可以在Microsoft Word中打开它!
此致
答案 0 :(得分:0)
如果满足以下任一条件,openDataObject方法将抛出异常而不是返回Doc:
使用带有launch参数的exportDataObject,而不是告诉查看器打开文件的openDataObject。 0将提示用户保存文件,1将保存文件并启动它。
this.exportDataObject({ cName: "image.doc", nLaunch: 1 });