Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java ME (J2ME) Development: NetBeans vs Eclipse

I have to develop a Java ME (formerly known as J2ME) application that will take advantage of Bluetooth technology to communicate with other instances of itself on other mobile devices.

I know that both NetBeans and Eclipse offer an integrated environment to develop Java ME applications.

Which one is more mature and stable? Which one offers better tools?

My application has to communicate to many more devices running the same app and so I need to test my application with multiple instances of emulators running it and allowing these emulator instances to see each other via the Java ME Bluetooth APIs.

Will I be able to do this?

like image 742
Andrea Zilio Avatar asked Mar 30 '10 13:03

Andrea Zilio


People also ask

Which is better NetBeans or Eclipse for Java?

NetBeans can be more beginner-friendly than Eclipse. It has a simpler user interface. And you can get started without all the plugins.

What is the difference between NetBeans and Eclipse?

NetBeans and Eclipse Java IDEs both offer excellent debugging capabilities, open-source coding, plugins, and extensions. NetBeans is easier to learn and has more features out of the box than Eclipse, but Eclipse can handle larger projects and is more customizable.

Can I install both NetBeans and Eclipse?

There are no issues at all with having them on the same system. However, each have their own project specific files, so using them on the same project isn't seamless. This is made a lot easier if you're using source control and keep your (non-source code) project files separate.

What are the advantages of NetBeans over other IDE?

The best for web development NetBeans is a great tool to install as it is quite easy to use. Its integration is great with other tools. NetBeans is very good for the creation of testing scripts for automation testing.


1 Answers

I've used both Eclipse and Netbeans in the past. For my final year project at university, I had to build a J2ME application which could communicate between several different mobile devices.

Netbeans has native J2ME integration, which I found more reassuring than having to use a third-party addon for Eclipse. Although I prefer Eclipse as an IDE, Netbeans was a lot easier to set up J2ME emulation etc. It allowed me to run several instances of the mobile device emulator and virtually communicate between them using Bluetooth.

You can also download and install various SDKs from phone manufacturers (Sony Ericsson etc) if you want to hook up their specific emulators to Netbeans.

like image 145
Seb Charrot Avatar answered Sep 21 '22 12:09

Seb Charrot