I’m a .Net guy and used to csproj/vbproj files being the central repository for all folders/files in a .Net project.
What’s the equivalent in Java explorer in Eclipse IDE? Where does it store the folders/resources and their physical paths etc?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are a few files involved.
.projectand.classpathcover the main important features, and the.settingsdirectory includes project-specific settings (e.g. different compiler warning levels etc).Note that unlike Visual Studio solutions, Eclipse doesn’t specify each and every file to compile: it assumes that if there’s a
.javafile underneath a source folder, it should be compiled. This makes life a lot easier in terms of diffs to project files… once set up, the project files in Eclipse rarely change, whereas they change every time someone adds or removes a file in Visual Studio 🙁