我在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);
}
我的问题背景描述为Here.
我看到的所有解决方案都与linux环境有关,比如使用这样的命令等。
vagrant up & vagrant reload provision OR vagrant provision
不能在windows环境中使用。请根据windows环境提出建议。