Eclipse Eye for Human Visual Studio

trying to do some development for Android, which means Eclipse, but most of my experience is with Microsoft tools (like Visual Studio). My java experience is mainly Blackberry Dev in JDE and some different things in Java for 1.0 days.

My question is that. In VS200x there is .sln (solution), .csproj (project), etc ... What are the equivalent file extensions for Eclipse? Do they even exist? I am having problems with the basics, for example, how to upload a project to the workspace .

  • Is there a refugee textbook from Microsoft somewhere?
+6
java android eclipse visual-studio
source share
4 answers

You need to use file import, and then select Existing projects in the workspace. A .project file and a .classpath file will be created.

I find that Eclipse works to be incredibly disappointing from Delphi / JBuilder, where all your settings were saved in one project file.

Make sure you also back up your workspace - there is nothing worse than recreating it when you are under pressure!

+4
source share

Have a look here for an "Introduction to Eclipse for Visual Studio Users" ...

Basically, for a Java program (I have never done any development in Android), the basic Eclipse configuration files for the project are the .classpath (which defines the dependencies of your project) and the .project file that contains all the features of your configuration project. In addition to this, a .settings directory is created that contains some configuration files for plugins activated in your project.

Edit:

Eclipse is the most used development environment for Java development. However, the best JetBrains IntelliJ IDEA IDE. I see that there is a plugin for developing Android applications ( here ). If you can satisfy this wonderful app ($ 249), you won’t regret it! Ultimately, you can try the free trial in 30 days ...

+9
source share

My 2 cents:

Make sure the version controls your .project and .classpath. You can also use path variables in the reference directory where external dependencies (third-party libraries) are located.

+2
source share

Are you doing this for pleasure or for commercial purposes? Because if the money would be involved, if I were you, I would really think about investing in IntelliJ , which is probably the best Java IDE out there, but, unfortunately, it's not completely free. The Android SDK has some IntelliJ support out of the box, so you don't have to write all the makefiles yourself. If you liked Visual Studio, you would like IntelliJ, so why not download the trial version and take a look at it.

Only my 2 cents.

+2
source share

All Articles