我尝试使用以下命令在我的Ubuntu 16.04中添加Oracle的PPA:
Cannot add PPA: 'ppa:~webupd8team/ubuntu/java'.
ERROR: '~webupd8team' user or team does not exist.
但它显示以下消息的错误:
public interface Shape {
void draw();
}
class Parallelogram implements Shape {
public void draw() {
System.out.println("This is Parallelogram");
}
}
public class Square extends Parallelogram {
@Override
public void draw() {
System.out.println("This Parallelogram is Square");
}
public static void main(String args[0]) {
Square square = new Square();
square.draw();
}
}
我提到Installation of JDK in Ubuntu
我该如何解决?
答案 0 :(得分:0)
再试一次。我刚刚尝试使用Ubuntu运行以下命令,它工作正常:sudo add-apt-repository ppa:webupd8team/java
。
我想你的命令中有一个拼写错误或服务器暂时失败。