Can I declare a method in main Java?

No, you can’t (directly *) defined methods inside other methods in Java (and the main method is no special case here). What you want to do is to put the method in the same class as main . If main needs to call it without creating an instance of the class, then it needs to be static , but it need not be public .

Read more