gpt4 book ai didi

java - 读取带有波兰语字母的 ANSI 文件并在没有口音的情况下在控制台中显示

转载 作者:行者123 更新时间:2023-11-30 09:59:57 25 4
gpt4 key购买 nike

我在 file.csv 中有这一行“ĆćĘ꣏źł”,它被编码(如 Notepad++ 所示)为 ANSI。我怎样才能像 CcEeLzzl 一样在控制台中正确显示这一行。

为了去除口音,我使用了 apache 中的 StringUtils.stripAccents(myLine) 但仍然得到“��Ee����”

        FileReader fr = null;
try {
String sCurrentLine;
br = new BufferedReader(new FileReader(fileName2));
while ((sCurrentLine = StringUtils.stripAccents(br.readLine())) != null) {
System.out.println(StringUtils.stripAccents(sCurrentLine));
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)
br.close();
if (fr != null)
fr.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}```

I want in COnsole this "CcEeLzzl", not that "ĆćĘ꣏źł". Please help me.

最佳答案

看起来您想要应用从波兰语字母到 stripAccents 域之外的 ascii 的自定义映射。可能你必须自己定义它,例如如下所示(仅针对“Ł”和“ł”显示)。

剧透:不,你不必这样做。 Windows 编码上的 ansi 是罪魁祸首。通过适当的解码 StringUtils.stripAccents 工作正常。看评论。但是,如果您离开 stripAccents 的域...

public void Ll() {
Map<String, String> map = new HashMap<>();
map.put("Ł", "L");
map.put("ł", "l");

System.out.println(Arrays.stream("ŁałaŁała".split("(?!^)"))
.map(c -> {
String letter = map.get(c);
return letter == null ? c : letter;
})
.collect(Collectors.joining("")));
}

关于java - 读取带有波兰语字母的 ANSI 文件并在没有口音的情况下在控制台中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58440401/

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