Reputation: 60184
When I do an import like this:
import java.awt.event.MouseEvent;
I can use the methods/fields from that Class. I'm just wondering where this package is actually located on my HDD.
Upvotes: 0
Views: 537
Reputation: 75386
If you have the class present in Eclipse you kan find the physical placement in the Properties for the class.
Upvotes: 0
Reputation: 93177
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.
Upvotes: 2