使用循环和封装

used of loop and encapsulation

我正在尝试让程序执行以下操作: 如果输入的数据不被接受,请重新请求信息 (注意:再次请求所有信息是可以的,没有必要只请求重新输入特定信息,但如果您愿意,可以)。

对于程序来说,一切似乎 运行 都很好,除了它的分辨率,它要求另一个输入,但如果输入不正确,它就接受。我需要它保持 运行ning 直到输入正确的输入。

import java.util.Scanner;
public class encap 
{
    private static String userID;
    private static String password;
    private static String resolution;
    private static int Ramsize;
    private static int freespace;
    private static int videocard;

    //Get and Set methods

    public static String getuserID()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Please enter userID : ");
        userID = input.next();
        return userID;
    }
    public static String getpassword()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Please enter password : ");
        password = input.next();
        return password;
    }
    public static String getresolution()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Please enter video resolution: ");
        resolution = input.next();
        if (resolution.equals("800x600") || resolution.equals("1024x768") || resolution.equals("1152x900"));
        else
        {
            while(true)
            {
                System.out.println("Information invalid, Please fill again");
                String getresolution = input.next();
                if (resolution.equals("800x600") || resolution.equals("1024x768") || resolution.equals("1152x900"));
                break;
            }
        }
        return resolution;
    }

    public static int getRamsize()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Please enter RAM size : ");
        while(true)
        {
            if(input.hasNextInt())
            {
                Ramsize = input.nextInt();
                break;
            }
            else
            {
            input.nextLine();
            System.out.println("Invalid Input! Integer required");
            System.out.print("Please enter RAM size : ");
            }
        }
        return Ramsize;
    }
    public static int getfreespace()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Please enter HD free space : ");
        while(true)
        {
            if(input.hasNextInt())
            {
                freespace = input.nextInt();
                break;
            }
            else
            {
                input.nextLine();
                System.out.println("Invalid Input! Integer required");
                System.out.print("Please enter HD free space : ");

            }   
        }
        return freespace;
    }

    public static int getvideocard()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("Please enter video card RAM size: ");
        while(true)
        {
            if(input.hasNextInt())
            {
                videocard = input.nextInt();
                break;
            }
            else
            {
                input.nextLine();
                System.out.println("Invalid Input! Integer required");
                System.out.print("Please enter video card RAM size: ");
            }   
        }
        return videocard;
    }

    public static void setuserID(String newuserID)
    {
        userID = newuserID;
    }
    public static void setpassword(String newpassword)
    {
        password = newpassword;
    }
    public static void setresolution(String newresolution) 
    {
        resolution = newresolution;
    }

    public static void setRamsize (int newRamsize)
    {
        Ramsize = newRamsize;
    }

    public static void setfreespace (int newfreespace)
    {
        freespace = newfreespace;
    }

    public static void setvideocard (int newvideocard)
    {
        videocard = newvideocard;
    }
    public static void main(String[] args)
    {
    setuserID(getuserID());
    setpassword(getpassword());
    setresolution(getresolution());
    setRamsize(getRamsize());
    setfreespace(getfreespace());
    setvideocard(getvideocard());
    System.out.println("You have input the following information: " + "\nuserID: " + userID 
            + "\npassword: " + password + "\nVideo resolution: " + resolution + "\nRam Size: " 
            + Ramsize + "\nHD Free Space: " + freespace + "\nVideo Card Ram Size: " + videocard);
    }
}

问题是因为您从未在有效案例场景中执行任何操作,并且您使用 .next() 作为单个字符而不是 .nextLine() 获取在行尾字符之后输入的整个输入 (return字符)

这将询问直到输入的输入满足您的 if 条件。

public static String getresolution()
{
    String resolution;
    boolean validAnswer = false;
    Scanner input = new Scanner(System.in);
    HashSet<String> validResolutions = new HashSet<>();
    validResolutions.add("800x600"); 
    validResolutions.add("1024x768"); 
    validResolutions.add("1152x900");
    //add more resolutions if you want without having to create a bigger if check 
    //validResolutions.add("1400x1120");

    do {
        System.out.print("Please enter video resolution: ");
        resolution = input.nextLine().replaceAll(" ", "").replaceAll("\n", "");
        validAnswer = validResolutions.contains(resolution) ? true : false;
        if(!validAnswer)
            System.out.println("Incorrect resolution please try again");
    } while (!validAnswer);

    return resolution;
}