RK-
RK-

Reputation: 12231

Qt or j2me is better?

I am planning to do some development for Nokia Devices. Can someone tell me which to use between Qt framework and j2me?

Upvotes: 1

Views: 571

Answers (2)

BarsMonster
BarsMonster

Reputation: 6585

Well, defenetly j2me will work on more Nokia devices, including some low-grade cell-phones.

Qt will give you the ability to write richer & more useful UI which is closer to the OS. This is especially important on Symbian & Maemo-based devices.

Needless to say, Qt would take way more time to develop and compile for different Nokia platforms.

Upvotes: 2

mmonem
mmonem

Reputation: 2841

Qt applications are platform native and you can do almost whatever you want. Qt is mainly C++.

J2ME development on the other hand is Java based and yields byte code binaries that are limited by the Java virtual machine running on the phone.

If you can do C++/Qt go for it

Upvotes: 3

Related Questions