So, I was just wondering if there was anyway to import the entire Java Framework all at once without having to include the entire list at the header of my file. Or if there’s a file I can write which compiles it all together.
Unless, this is “java.lang”, perhaps? I doubt that’s the universal though. I also would like to know the best method of importing the JDK framework (which I downloaded) into the Eclipse IDE, if that’s possible, and how it will pertain to my code.
I’ve been screwing with this for hours, now, and am confused -__-;
Thanks for any tips on this.
You can use a shortcut of * for package imports. For instance:
IDEs such as Eclipse make it easy to manage imports, however. In Eclipse, for instance, you can press ctrl+shift+O and it will search for any imports for you. (Or command+shift+O on the Mac.) Let the tools do the annoying work.