GPG错误以下签名无法验证:NO_PUBKEY 1E9377A2BA9EF27F

时间:2017-01-28 08:44:50

标签: node.js windows vagrant virtualbox

我在Windows 10上使用Vagrant。我的环境条件是:

1 - Node v4.6.0

2 - Vagrant 5.1

3 - Virtualbox 1.9

我想让Thimble在本地工作。

当我使用命令

public static void main(String[] args) throws FileNotFoundException, IOException {
    //path of your file
    String fileName = "mac/text.txt";
    //read your String from your file like this :
    String input = new String(Files.readAllBytes(Paths.get(fileName)));
    System.out.println(input);

    String delim = ",|\\ ";
    String[] token = input.split(delim);
    System.out.println(token.length);
}

它给了我错误 enter image description here

我的问题背景描述为Here.

我看到的所有解决方案都与linux环境有关,比如使用这样的命令等。

vagrant up & vagrant reload provision OR vagrant provision

不能在windows环境中使用。请根据windows环境提出建议。

0 个答案:

没有答案