Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8142247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:45:11+00:00 2026-06-06T12:45:11+00:00

I want a class to check if an input is valid, and all the

  • 0

I want a class to check if an input is valid, and all the valid input is record in a text file.

So in construction, it read in the text file and put all valid inputs into a HashSet. Then I have static function to receive an input and check if the input is in the HashSet.

Code structure is like following:

public class Validator {
    HashSet validInputs;

    public Validator() {
        //read in
    }

    public static boolean validate(String in) {
        //check and return
    }
}

Then in other class, I need to use Validator class to validate strings. Code is like:

...
String a = XXX;
boolean valid = Validator.validate(a);
...

I haven’t tested the code, but I have two questions:

  1. Does it work? Is the valid input text file read in?
  2. When will the class read in the text file?
  3. Will Validator read the text file every time I call the function validate()?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T12:45:12+00:00Added an answer on June 6, 2026 at 12:45 pm

    You could use a singleton and a non-static validate-method:

    public class Validator {
        private static Validator instance = null;
    
        /**
         * Do not use new Validator; use Validator.getInstance() instead.
         */
        private Validator() {
            // read in
        }
    
        public static Validator getInstance() {
            if(instance == null) {
                instance = new Validatorr();
            }
            return instance;
        }
    
        public boolean validate(String str) {
            // check and return
        }
    }
    

    Everywhere where you need to validate something use:

    Validator.getInstance().validate()
    

    NOTE: A side effect of the singleton pattern implemented this way is that if the Validator is not used, the Validator is not created and in is not read. This may or may not be what you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to find all form elements, with a specific class, and check if
I want to check if a Dom has class value attached to it.. Since
I want to check if a particular class is applied to a span inside
I want to check if an element has the class .active, if it does
I am extending the ActionResult class. In the ExecuteResult method I want to check
I have two objects of the same class (Model) type. I want to check
<TD> <input type=text name=name1 size=35 class=mustEnter /> </TD> <TD> <input type=radio name=name2 value=val1 class=mustCheck/>
I need to check the user input in the preferences if they want to
i have a data validation class method where i check the user input before
I'm want to do a class with file extensions, I thought the extensions should

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.