ログインするとアプレットが表示されるログインシステムを作ろうとしています。なんらかの理由で、エラーが発生し続けます。これが私が持っているものです:
import java.util.Scanner;
class login {
private static Scanner luci;
public static void main(String args[]){
luci = new Scanner(System.in);
String idInput;
System.out.println("Please type ID: ");
idInput = luci.nextLine();
String passwordInput;
System.out.print("Please type Password: ");
passwordInput = luci.nextLine();
if(passwordInput.equals("Atlas") && (idInput.equals("Seymore"))){
System.out.println("Authentification complete!");
}if(passwordInput.equals("Admin") && (idInput.equals("Admin"))){
System.out.println("Authentication complete: Reverting To Program.");
try {
Thread.sleep(800);
} catch(InterruptedException e) {
}
loginaccepted objectName = new loginaccepted();
objectName.paint(null);
}else{
System.out.println("Rong ID or Password!");
}
}
}
そして、ここに loginaccepted.class があります:
import java.applet.*;
import java.awt.Graphics;
public class loginaccepted extends Applet{
public void paint(Graphics g){
g.drawLine(10, 20, 50, 60 );
}
}
どんな助けでも大歓迎です。私は楽しみのために、そして Java プログラミング言語の知識を向上させるためにこれを行っていました。