Don't look at the JDK source code, equivalent to not learning Java.
I found an article from Baidu that helped me resolve how to view JDK source code under Eclipse.
View the source code of the JDK class library in Eclipse!!!
Settings:
1. Point "Window", "Preferences", "Java", "Installed JREs"
2. The right side of "Installed JREs" is the list pane, listing the JRE environment in the system, selecting your JRE, and then clicking "Edit ..." on the edge, a window will appear (edit JRE)
3. Select this entry for the Rt.jar file: "C:\Program Files\java\jre_1.5.0_06\lib\rt.jar"
Point to the left of the "+" sign to expand it,
4. After expanding, you can see "source Attachment: (None)", point this item, point to the right button "Source Attachment ...", select "Src.zip" file under your JDK directory
5. "OK", end.
Dt.jar is a class library about the operating environment, mainly swing packages
Tools.jar is a class library of some tools
Rt.jar contains the base class library of the JDK, which is the class file of all the classes you see in Java doc
View JDK source code in Eclipse
1, you put the mouse on a JDK class to press F3, if you migrate to a class file to take it
2,class file screen will have an "associated source code" button, click on this button, and then select the Src.zip file under JDK from the system file
This will be OK, then you can directly see the source code.
Method Two:
Hold down the CTRL key, move the mouse over the class you want to view, and then click the left mouse button!
How to view the JDK source code under Eclipse (GO)