I am learning Java and I have came across few packages like util
package, swing
package etc. I want to dig it more so my question is when we import any packages in our source code where can I see those packages and the class codes in my personal computer.
Let's say there is an util
package and ArrayList
class. So where can I find the util
package and ArrayList
class?
Can I make any changes to ArrayList
class or any other class?
I am trying to have the packages and class code without Eclipse installation. I have installed JDK and JRE and running the Java files through command prompt and using Notepad++ for writing code.