一、安装java
sudo add-apt-repository ppa:linuxuprising/java sudo apt-get update sudo apt-get install oracle-java13-installer
或者点击下面路径下载“deb格式”与”tar.gz压缩包“来安装
https://www.oracle.com/technetwork/java/javase/downloads/index.html
二、helloworld
public class helloworld { public static void main(String[] args) { System.out.println("Hello World"); } }
注:Java对大小写敏感。
执行命令
javac helloworld.java java helloworld
最终打印如下: