【问题标题】:Execute .jar file with a Mozilla extension执行带有 Mozilla 扩展名的 .jar 文件
【发布时间】:2015-09-08 20:30:07
【问题描述】:

我查看了此处已回答的以下问题:

How to open file in Mozilla Add-on SDK using system default application

How can I open an external app from Firefox addon? (Eg: default text editor)

Perfom a ShellExecute from Firefox Addon

然而,这些解决方案都没有对我有用,我觉得问题可能比我最初想象的要深。本质上,我正在尝试使用 Mozilla 附加扩展名启动 .jar 可执行文件。我的代码如下所示:

var buttons = require('sdk/ui/button/action');

var button = buttons.ActionButton({
  id: "execute-jar",
  label: "Download Report",
  icon: {
    "16": "./icon-16.png",
    "32": "./icon-32.png",
    "64": "./icon-64.png"
  },
  onClick: handleClick
});



function handleClick(state) {
    // try {
        // var file = Services.dirsvc.get("Desk", Ci.nsIFile);
        // file.append("C:\Users\QaziWa\DownloadReportPPE.jar");
        // file.launch();
    // }
    // catch (ex) {
        // console.error("failure");
      // Failed to launch because e.g. the OS returned an error
      // or the file does not exist,
      // or this function is simply not implemented for a particular platform.
    // }

    let {Cc, Ci} = require('chrome');
    var file = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);
    file.initWithPath("C:\Users\QaziWa\DownloadReportPPE.jar");
    console.log(file);
    if(file.exists()){
        file.reveal();
        file.launch();
    }
    else {
        console.log('Failed.');
    }
}

由于某些奇怪的原因,我的 .jar 文件没有被检测到,我不明白为什么。我希望有人可以就为什么会这样提供任何意见。

【问题讨论】:

    标签: javascript firefox-addon firefox-addon-sdk mozilla jpm


    【解决方案1】:

    改变

    file.initWithPath("C:\Users\QaziWa\DownloadReportPPE.jar");
    

    file.initWithPath("C:\\Users\\QaziWa\\DownloadReportPPE.jar");
    

    需要避开那些斜线;)

    【讨论】:

    • 哈哈,当我正要回答我自己的问题时,你发布了这个。不过谢谢你的帖子!
    • 我高兴的人继续出色的工作,期待看到您的插件成为成品。
    猜你喜欢
    • 2017-08-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-11-30
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多