public static void main (String[ ] args) aka the main method can be called from an another method or a class outside of main. You just have to call it using: main(null); As long as you have declared your main method as public you can call it.
Read moreCan you call the main method in Java?
Though Java doesn’t prefer main() method called from somewhere else in the program, it does not prohibit one from doing it as well. So, in fact, we can call the main() method whenever and wherever we need to .14 Şub 2022
Read more