I want to add a .java file into my project. But this .java has “Main”. and this is a big .java file.
I just want to call and run this .java file somewhere in my project. How can I deal with this?
Wish I made this clear.
Thanks you all.
P.s. I m using netbeans.
With IDE, Netbeans
Just add the file to your project like any other Java source file. After Netbeans has compiled it successfully, you can call the code with:
(where “Main” is the name of the class which is contained in your .java file).