Reputation: 21
where does the java file, for example: Employee1.java goes after it is saved in eclipse?
Upvotes: 1
Views: 127
Reputation: 14463
simple way,
work space --> select your project --> open **src** folder --> open Employee1.java file.
Or
right click the project --> go to properties --> see the path on resource.
Upvotes: 0
Reputation: 506
I guess you have made your java code by selecting new in your java resource:src under your project.... if so then it will go in the projectname/src folder in your workspace............. once you write it eclipse automatically compiles it and stores it in the bin folder of ur workspace from where it uses it.
Upvotes: 1
Reputation: 10468
To figure out the path of your workspace go to File->Switch Workspace->Other... then in the popup dialog, the shown path is your workspace path.
Now use file explorer to explore the workspace path and see if the folders under it looks familiar to you :-)
Upvotes: 0
Reputation: 44406
Path
- a relative path to the file (based on project's root), Location
- an absolute path to the file in filesystemUpvotes: 3