我正在使用rundll32 url.dll,FileProtocolHandler my_file.dotx
在Windows下打开文件。
它可以与.docx文档一起使用,但是当我使用.dotx文档(模板文档)尝试它时,它会根据模板创建一个新的.docx。
正如Windows资源管理器中的常规行为一样:当您双击.dotx模板文件时,它会根据它创建一个新的.docx文件。如果要打开真正的.dotx文件,必须右键单击它并选择“打开”而不是“新”。
问题是:如何用rundll32做同样的事情?命令中是否有一个选项可以强制打开基础模板而不是创建新文档?
编辑:我需要一种方法,在命令行中没有C函数,只是纯文本(我使用Java来做)。
答案 0 :(得分:4)
也许你可以在ShellExecute附近包装一个简单的C程序,并传递动词OPEN。
ShellExecute(NULL, TEXT("open"),
TEXT("rundll32.exe"), TEXT("url.dll,FileProtocolHandler pathToGadget"),
NULL, SW_SHOWNORMAL);
我找到了这个例子here。
编辑:
由于您是在Java中执行此操作 - 您可以尝试使用JNI wrapping的(from the example I found on The Wannabe Java Rockstar and butchered) ShellExceute函数{{3}}
public static boolean execute(String file, String parameters) {
Function shellExecute =
Shell32.getInstance().getFunction(SHELL_EXECUTE.toString());
Int32 ret = new Int32();
shellExecute.invoke(ret, // return value
new Parameter[] {
new Handle(), // hWnd
new Str("open"), // lpOperation
new Str(file), // lpFile
new Str(parameters), // lpParameters
new Str(), // lpDirectory
new Int32(1) // nShowCmd
});
if(ret.getValue() <= 32) {
System.err.println("could not execute ShellExecute: " +
file + ". Return: " + ret.getValue());
}
return (ret.getValue() > 32);
}
public static void main(String[] args) {
ShellExecute.execute("rundll32.exe","url.dll,FileProtocolHandler pathToGadget" );
}