如果我有一个文件系统路径,我可以在资源管理器(在Windows上)或在Finder(在OS X上)打开一个窗口,显示路径所指向的文件夹吗?
Cookie指出跨平台和/或无插件的答案。
答案 0 :(得分:2)
您需要能够从浏览器运行新进程。有几种方法可以做到这一点。我将展示JNLP的方法来做到这一点。
创建一个jnlp文件,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://example/" href="jnlpTest.jnlp">
<information>
<title>Some Title</title>
<vendor>Some Vendor</vendor>
<homepage href="http://example/" />
<description>Some Description</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+" />
<jar href="jnlpTest.jar" />
</resources>
<application-desc main-class="MainClass" />
</jnlp>
从以下内容创建一个jnlpTest.jar:
public class MainClass {
public static void main(String args[]) {
Runtime rt = Runtime.getRuntime();
try {
//TODO - different exec for Mac
rt.exec("explorer.exe");
} catch (IOException e) {
//exception
}
}
}
使用清单:
Manifest-Version: 1.0
Main-Class: MainClass
签署您的JNLP jar:
keytool -genkey -keystore testKeys -alias jdc
jarsigner -keystore testKeys jnlpTest.jar jdc
将jar和jnlp文件放在Web服务器上。确保将mime类型JNLP作为application/x-java-jnlp-file
。
制作JNLP的参考:http://java.dzone.com/articles/java-web-start-jnlp-hello
现在当用户点击你的jnlp链接时,他们会下载jar并被问到是否可以运行。运行它将导致资源管理器窗口打开。我知道这不是最好的解决方案,但任何解决方案都需要请求用户在其计算机上执行代码的权限。
答案 1 :(得分:2)
对于node-webkit(NW.js)个用户,您可以使用...
var gui = require("nw.gui");
document.querySelector("[data-location]").onclick = function() {
gui.Shell.showItemInFolder(__dirname + '/content/project/' + this.textContent);
};