我遇到了这个符号的问题 - (不是 - )。当我使用tolowercase()
函数时,它显示 。我不知道如何解决这个问题。请帮忙。谢谢。
public String content = "noise—tap, tap—plash, plash—as";
this.content = this.content.toLowerCase();
System.out.println(this.content);
输出:noise tap,tap plash,plash as
答案 0 :(得分:5)
您案例中的输出取决于三件事。
编辑:我猜这是最可能的罪魁祸首。您可以查看系统属性file.encoding
进行确认。