public class MyFirstApp {
public static void main(String[] args) {
System.out.println(“I Rule!”);
System.out.println(“The World”);
}
}
当尝试使用javac MyFirstApp.java
在cmd中编译它时,它会显示there is an unmappable character (0x9D) for encoding
。有什么问题?
答案 0 :(得分:1)
引号:
System.out.println(“I Rule!”);
System.out.println(“The World”);
不正确。它们与左和右不同。对。它们应该是普通的"
System.out.println("I Rule!");
System.out.println("The World");
这种类型的问题通常是由使用文字处理器(例如Word)而不是文本编辑器或程序员编辑器引起的。 (最简单的典型示例是记事本,但有很多免费和低成本的替代方案功能更强大。)