When I do an import like this: import java.awt.event.MouseEvent;
I can use the methods/fields from that Class. I'm just wondered where this package actually located on my HDD.
When I do an import like this: import java.awt.event.MouseEvent;
I can use the methods/fields from that Class. I'm just wondered where this package actually located on my HDD.
It depends on your system and your JRE emplacement.
On Mac OS it's in /System/Library/Frameworks/JavaVM.framework/Home/bundle/Classes/classes.jar
On Windows or Linux in $JAVA_HOME/jre/lib/rt.jar
(thanks @kuropenguin for the information)
$JAVA_HOME
depending on where you've installed your JDK.
On other systems, you'll have to look for yourself.
If you have the class present in Eclipse you kan find the physical placement in the Properties for the class.