What's the difference between creating a folder and Java Package?
Asked
Active
Viewed 48 times
-4

AfterShock360
- 165
- 10

Lukasso
- 15
- 1
-
3Possible duplicate of [Java Package Vs Folder-Structure? what is the difference](https://stackoverflow.com/questions/9510932/java-package-vs-folder-structure-what-is-the-difference) – Kamal Nayan Apr 15 '19 at 17:15
1 Answers
0
A folder is like you would use in a file explorer, it serves only as an organizational tool. A Java Package is the place where you design programs, it houses all types of classes, JavaDoc webpage code, and anything else that relates to the actual code. You need to use Java Packages, you only use folders for organizing said code and packages.

AfterShock360
- 165
- 10