如何在Node Webkit中使用相对路径

时间:2015-05-16 20:48:02

标签: javascript node.js node-webkit nw.js

我无法使用相对路径:gui.Shell.openItem();, 这是代码:

var gui = require('nw.gui');
gui.Shell.openItem('setup/BitTorrent.exe');

1 个答案:

答案 0 :(得分:0)

private static List<Fruits> getFruits() {
    EnumSet<Fruits> local = EnumSet.of(CURRENT_FRUIT);
    EnumSet<Fruit> otherFruits = EnumSet.complementOf(CURRENT_FRUIT);

    // start by adding and shuffling otherFruits
    List<Fruits> result = new ArrayList<Fruits>(otherFruits)
    Collections.shuffle(result, new Random(System.nanoTime()));

    // now add local
    result.addAll(new ArrayList<Fruits>(local));
    return result;
}