gpt4 book ai didi

java - Scanner.next 返回文件路径?

转载 作者:行者123 更新时间:2023-12-01 12:42:25 27 4
gpt4 key购买 nike

我有扫描仪:

m = new Scanner(Values.mazegen.replace("\\","//") + "//maze.txt");

(Values.mazegen.replace("\","//") + "//maze.txt"打印为 C://users//myusername//Desktop)当我使用 m.next() 时它返回C://users//myusername//Desktop//maze.txt。我不知道为什么...?完整代码:

public void openFile(){
try {
if(Values.custom == true && Values.customSolved == false){
m = new Scanner(new File(Values.MazeFile));
}else if(Values.customSolved == true || Values.custom == false){
m = new Scanner(Values.mazegen.replace("\\","//") + "//Maze.txt");
}else{
m = new Scanner(Values.mazegen.replace("\\","//") + "//Maze.txt");
}
} catch (FileNotFoundException e) {
System.out.println("File not found!");
}
if(Values.custom == true && Values.customSolved == false){
m.nextLine();
}
}

public void readFile(){
System.out.println("Got this far...");
while(m.hasNext()){
for(int i = 0; i < Values.x; i++){
Maze[i] = m.next();
System.out.println(Maze[i]);
}
m.nextLine();
}
}

public void closeFile(){
m.close();
}

(OpenFile、readFile、closeFile依次执行)

最佳答案

Scanner(String)扫描您传递给它的字符串文字,而不是文件。扫描文件使用 new Scanner(new File("path to file"))

此外,您不应该使用双正斜杠。

关于java - Scanner.next 返回文件路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24977108/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com