gpt4 book ai didi

java - 扫描器不想读取西里尔文内容

转载 作者:行者123 更新时间:2023-11-29 07:50:00 25 4
gpt4 key购买 nike

我经常使用扫描仪类(class)。但在这种情况下,一个圆圈 while(scanner..hasNext()) 返回任何东西。文件路径正确。可能是什么原因?我附上了代码和文件内容。

 public class Solution {
public static void main(String[] args) throws IOException{

File file = new File("D:/t1.txt");
Scanner sc = new Scanner(file);
sc.useDelimiter("\\s");

while (sc.hasNext()){
String ss = sc.next();
System.out.println(ss);
}
sc.close();
}
}

文件 t1.txt

Киев Нью-Йорк Амстердам Вена Мельбурн

最佳答案

这可能与您的问题无关,但您应该始终指定 charset

关于java - 扫描器不想读取西里尔文内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21936940/

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