customized version of eclipse - java

I currently have the android sdk running with eclipse. It happens to be that I also want to download stanford's customized version of eclipse in order to learn some other stuff. Will there be a problem downloading and installing this customized version if I already another version of eclipse installed on my computer?

Nope! Just make sure you install them to different locations and (potentially) use different workspaces. Eclipse is totally self-contained in the eclipse directory (or where ever you install it).

Related

When update eclipse, it turns to another version

I was using eclipse IDE for java Developers, then a notification for update comes through, I've accepted it, everything is ok, restart needed, ok.
after opening, I've shocked that it became IDE for Web Developers, and all my projects became full of errors, and can't make a new java project.
I can't just download another version of eclipse for java ee, because I have a lot of plugins installed, and many configurations made.
How I can return back to the previous version?
Any suggestions please
You should be able to download and install the older version of Eclipse again:
Don't try to reinstall on top of your existing installation. Move or copy the existing Eclipse installation directory somewhere else before you start.
I would also advise making a backup of your workspaces before you do anything else. It is unlikely that the upgrade / downgrade will do any damage, but you can't be too cautious.
The errors that you are seeing are likely to be due to a simple Eclipse configuration problem, or maybe a problem with versions of third-party plugins. If you told us what the errors were, someone would be able to tell you how to fix them. Then you can use the newer version of Eclipse.
I can't just download another version of eclipse for java ee, because I have a lot of plugins installed, and many configurations made.
Actually, neither of those things prevent you from doing that. Downloading and reinstalling will be inconvenient ... but it is probably your best option.
Note that you could either download and install the new version of Eclipse, or you could download and install the version you were using previously.
I think it's no matter. I suggest to you use Spring Tool Suite based on Eclipse 3.**; You don't have to deal.

NetBeans IDE 8.0.2 Support for Netbeans IDE 7

I am starting a computer science class and need to download Netbeans IDE on my Mac 10.6.8. The latest Netbeans edition compatible with my Mac is NetBeans 7. However, in my class, we use NetBeans IDE 8.0.2
Am I able to transfer projects between both versions (via thumb drive) and edit them on both versions of Netbeans?
Thanks for the Help!
You can try it, but I have had trouble in the past with some custom Ant extensions Netbeans uses breaking when you try to use an older version of Netbeans than the one the project was created with. The other way seems to be less problematic. I have almost always been able to open projects created with an older version of Netbeans with a newer one.
I think there are two options:
Copy the sources but just create a new project with the older Netbeans using existing sources as needed. If you haven't customized a lot of settings this is usually fine.
Use Maven projects instead of Ant projects (which are just called Java applications in the Netbeans projects window). Just select Maven in the categories list in the new project dialog. These projects are less closely tied to the Netbeans versions, they can even be imported fairly reliably into Eclipse and Intellij.
copy the source folder(netbeansprojects[Your project]\src) and copy it to a thumb drive. Open a new project in your pc (the one in your class, 8.0.2) and go to THAT projects src, delete it, and replace it with the one from you're flash drive.

Developing Android application on multiple computers with Eclipse

I have my Android application project in Dropbox folder. I use my desktop pc as well as my laptop to develop the application. When I switch between these two computers, it uses some kind of different key or something for the application and Android SDK says I have to first uninstall (and lost all data) before I can install it again.
Any fixes?
While you should be using a Version Control System such as SVN, Git, TFS, CVS, etc. it sounds like you have an issue with the developer key used to sign the application. I haven't used Eclipse in over a year since I prefer using IntelliJ however I will answer from what I remember about Eclipse and the Android SDK.
The Android SDK has a default keystore that is used for signing development applications (on Windows it should be in C:\Users\username\.android\debug.keystore, on Mac it is /Users/username/.android/debug.keystore). If you want to be able to debug your application on multiple computers without uninstalling the APK first then you will need to copy one of these debug.keystore files to the other machine.
Now, as I mentioned I haven't used Eclipse in some time so Eclipse may use a different location/keystore combination (I know IntelliJ does) however the same method can be used.
Use subversion or git for your source control. Dropbox is not sufficient, since it won't even log history.
For subversion, I recommend google code with subversive eclipse plugin:
https://code.google.com
For git, you should use (with git eclipse plugin)
https://github.com/

Setting environment variable for Eclipse?

I have set the CLASSPATH and HOME_PATH for my JDK in the windows environment variables, do I need to set anything similar for Eclipse in order to compile Android programmes?
The problem I'm having is that Eclipse can be opened and create a program as simple as the Helloworld example, seems to be not an exact way to compile and then I can pack into any execution file so my little Android phone can install with.
Android requires more than just Java, but also the Android SDK. To get it working with Eclipse, you'll also need the Eclipse Android plugin. So, if you can run the HelloWorld program, Java is working. Follow instructions to get Android working here:
http://developer.android.com/sdk/index.html
Also, there's a couple links under the "ADT Bundle" section to just download a self-contained version of Eclipse bundled with the Android SDK to save you from installing the Eclipse Android plugin and configuring anything. You'll unzip the folder in a convenient directory, then see two folders: the Android SDK and another containing Eclipse. You can just run the Eclipse.exe in the Eclipse folder and your Android environment is good to go.
Do you have the android SDK? If not, get it here. It comes with eclipse IDE with all the required things already set up.

Eclipse IDE for (Java and reports, PHP and Android)

There are different version of eclipse for different development environment.
My question is IF IDE remains same then why different versions, and if someone want to use all supported environments in single IDE how he/she can achieve that.
I want to use eclipse as single IDE for PHP, Java & Reports and Android development, instead of using different installation of eclipse.
Somebody helps me or refer me some link, it's quite confusing!
All the versions of Eclipse on the main site download page are the same version of Eclipse, but packaged with different sets of plugins. You can always install more features in Eclipse by installing more plugins.
You can have a single installation of Eclipse and use it for all your development needs - depending on your tastes however, it may sometimes be more manageable to have separate installations of Eclipse for different tasks (when there are a lot of plugins, Eclipse can take noticeably more time to start.)
There ARE different versions of Eclipse out there. But if we stick to one version and look at why there are different variants to download it's basically just that they come prepackaged with a specific component. So if you would like to use your Eclipse for C++ development you can get going with on single download. Instead of downloading the main IDE and then adding the module to support C++.
But after you install Eclipse, with any prepackaged modules, it's easy to add new ones. Say you have Zend Studio which is a PHP IDE based on Eclipse. You can still add all other modules supported by the version of Eclipse that Zend Studio is based on. For instance the Android SDK kit for Android development. You can add most modules by doing a search for them and finding the url to it's update site. Then click Help->Install New Software. Then you click Add and add the URL of the Update site of the module you wish to install.
Then you can select it from the Work with drop-down and it should appear in the list. Select it and click Next.
That way you can install almost all available modules for Eclipse. Note that sometimes you can run in to compatibility issues between installed modules and dependency problems. But most of the time it works fine.
They are not different versions, just the same backend with plugins for the particular language. Just that the specific versions are configured for best use with the language specified. If you want to use more languages than the default one in the eclipse you downloaded, just download the plugins you require and install in your installation of eclipse
Eclipse is plugin based IDE and these plugins may not like each other sometimes. It will be better to use more installations. In fact if you are developing Java and PHP you will need only 2 of them.
STS is a good Java toolkit especially if you work with spring.
If you new to Eclipse you should know that it can go crazy couple of times per month if you install too much and it is very annoying to see that one day your webapp is deploying and second day no...
Keeping installation separated you will have better control.

Categories