Tagged Questions

Java Platform, Micro Edition, or Java ME, is a Java platform designed for embedded systems.

learn more… | top users | synonyms (3)

37
votes
1answer
29k views

J2ME/Android/BlackBerry - driving directions, route between two locations

On Android 1.0 there was a com.google.googlenav namespace for driving directions: Route - Improved Google Driving Directions But in newer SDK it was removed by some reason... Android: ...
20
votes
21answers
5k views

What mobile platform should I start learning?

What mobile platform should I start learning? What matters is: ease popularity of the platform low cost of the SDK and actual handheld
18
votes
4answers
1k views

Best way to really grok Java-ME for a C# guy

I've recently started developing applications for the Blackberry. Consequently, I've had to jump to Java-ME and learn that and its associated tools. The syntax is easy, but I keep having issues with ...
17
votes
3answers
613 views

Exploitable Java functions

This question is similar to Exploitable PHP Functions. Tainted data comes from the user, or more specifically an attacker. When a tainted variable reaches a sink function, then you have a ...
17
votes
6answers
37k views

Convert a JSON string to object in Java?

Is there a way in Java/J2ME to convert a string, such as: {name:"MyNode", width:200, height:100} to an internal Object representation of the same, in one line of code? Because the current method ...
17
votes
8answers
4k views

Is there a good J2ME IDE? [closed]

Is there a good J2ME IDE? I mean something lightweight, and portable. Something that can run what you program on it. My favorite Java IDE is JCreator Lite. Is there something like that for J2ME? Also, ...
16
votes
5answers
15k views

moving to android from j2me

Coming from J2ME programming are there any similarities that would make it easy to adapt to Android API. Or is Android API completely different from the J2ME way of programming mobile apps.
14
votes
2answers
297 views

sony ericsson JP-7 j2me debugging

I'm trying to debug a J2ME application on my Sony Ericsson K790i which is a JP-7 phone on a Windows XP with latest Netbeans, J2ME SDK, Sony SDK, etc. I can USB connect and use the SE Device Explorer. ...
14
votes
8answers
8k views

Develop Blackberry apps using native API or J2ME?

We're about to build a Blackberry application but would love some input on whether to implement using J2ME (MIDlet based) or Blackberry native (UIApplication). I understand some of the tradeoffs. ...
14
votes
7answers
5k views

Logging in J2ME

What logging solutions exist for j2me? I'm specifically interested in easily excluding logging for "release" version, to have a smaller package & memory footprint.
12
votes
12answers
799 views

Creating a Mobile Programming Language

I'm thinking about creating a small language that is very easy to type on a mobile phone (J2ME), What is the more appropriate language to implement in order to run it inside a mobile phone (j2me ...
11
votes
12answers
2k views

In J2ME and Android which one is more useful, useable and popular as mobile programming language or framework?

I am very interested in mobile application development. But which language or framework is more popular, useful and usable? I know Java well. If you have any idea and/or experience, please help me to ...
11
votes
9answers
2k views

Java ME UI libraries

Guys, I'm developing a Java ME app & need pointers to some really good UI libraries. I did see a few such as JavaME Polish. Are there any more out there? For e.g. ebuddy's java ME app has an ...
10
votes
8answers
350 views

Is it worth mitigating against the effects of garbage collection?

I have an application where the memory profile looks something like this: The slow upwards crawl of memory usage is caused by the allocation of lots and lots of small, simple, transient objects. In ...
10
votes
4answers
2k views

How to deal with the most common classes missing on J2ME

I'm trying to code an application which runs un different java platforms like J2SE, J2ME, Android, etc. I already know that I'll have to rewrite most of the UI for each platform, but want to reuse the ...
10
votes
9answers
10k views

Image rotation algorithm

I'm looking for an algorithm that rotates an image by some degrees (input). public Image rotateImage(Image image, int degrees) (Image instances could be replaced with int[] containing each pixel ...
9
votes
2answers
9k views

J2ME/Blackberry - how to read/write text file?

please give me a sample code for read/write text file in blackberry application.
9
votes
8answers
8k views

Rounding a double to 5 decimal places in Java ME

How do I round a double to 5 decimal places, without using DecimalFormat?
9
votes
4answers
2k views

Can I compress HTTP Requests using GZIP?

I am communicating to a Tomcat Server using a Java ME application on my mobile device. I was wondering if I could compress my requests/responses using Gzip to reduce the number of bytes sent over the ...
9
votes
4answers
13k views

How to create J2ME midlets for Nokia using Eclipse

Nokia has stopped offering its Developer's Suite, relying on other IDEs, including Eclipse. Meanwhile, Nokia changed its own development tools again and EclipseMe has also changed. This leaves most ...
8
votes
1answer
258 views

How to transfer data to a serial port?

I know that in J2ME CommConnection is the connection to use when working with serial port. I know there are the openInputStream and openOutputStream methods , but in fact I don't know how to transfer ...
8
votes
14answers
26k views

J2ME VS Android VS iPhone VS Symbian VS Windows CE [closed]

I have very little idea about mobile platforms, though I am interested to program for them. Would you please compare J2ME VS Android VS iPhone VS Symbian VS Windows CE. I would like to know: ...
8
votes
4answers
13k views

Barcode reading using picture taken using mobile phone camera

How do we do programmatic reading of a barcode that is captured using a mobile phone camera? For example, how do that using iPhone or Android or Java ME? Do we need separate hardware to read bar code ...
8
votes
3answers
4k views

Java obfuscation - ProGuard/yGuard/other?

This is along similar lines as these recent questions: http://stackoverflow.com/questions/93290/best-java-obfuscation-application-for-size-reduction ...
7
votes
3answers
226 views

Distributing state across many machines

I'm trying to write up a tool that requires knowledge of the state of other machines in a cluster (local LAN). This is for a network failover/high availability system similar to VRRP and ...
7
votes
5answers
399 views

How to create a mobile oriented, multiplatform, shared library in Java?

I have a Java application that runs on BlackBerry (JDE 4.5). I want to port this application to Android, and be able to maintain the 2 applications simultaneously. I may also want to port this ...
7
votes
2answers
459 views

How to use bouncy castle API in J2ME using eclipse?

I am trying to import and use the bouncy castle API to encrypt and decrypt a MP3 file in J2ME using Eclipse. Even though I import cldc_sources.zip & CLDC_crypto.zip I'm getting ...
7
votes
3answers
273 views

Is java Thread using Real time timer in system or it has it's own dedicated timer?

Does any one know what timer the Thread.sleep(1000) method uses? Does Thread using real time system timer or does it has it's own dedicated timer? Thanks in advance for answers.
7
votes
4answers
969 views

J2ME - code signing - What's the Certificate that works in all handsets such as Nokia,samsung,Micromax,LG?

I am creating a MP3Player which will access the device memory card to list the songs.For this I am using File Connection API so devices like Nokia keep on asks for permission.To overcome this the jar ...
7
votes
2answers
3k views

How do I uninstall Java ME SDK from Windows 7 x64?

I try to uninstall Java ME SDK from Windows 7 x64, but it doesn't work for me. If I choose Uninstall I get a progress bar, then it goes away, but the Software is still there. On the first few times ...
7
votes
2answers
1k views

Difference between volatile and synchronized in JAVA (j2me)

I am wondering at the difference between declaring a variable as volatile and always accessing the variable in a synchronized(this) block in JAVA (particularly J2ME)? According to this article ...
7
votes
3answers
16k views

Android how to get access to raw resources that i put in res folder?

In J2ME, I've do this like that: getClass().getResourceAsStream("/raw_resources.dat"); But in android, I always get null on this, why?
7
votes
5answers
2k views

Best Portal to buy and sell J2ME apps

There are so many app stores for any kind of platform out there, but when I try to find a good store to buy and sell j2me apps, I find some, but no really big one or defacto standard like I was used ...
7
votes
4answers
4k views

How do you make a dropdown list that displays images to the user instead of text?

The ObjectChoiceField field meets all my requirements but it is not pretty. This is what I have: String pets[] = {"Dog", "Cat", "Duck" }; ObjectChoiceField dd = new ObjectChoiceField("My ...
7
votes
2answers
695 views

Are there any benchmarks on J2MEPolish converting a J2ME app to Android?

J2ME Polish claims to support porting of existing J2ME applications to Android. Has anyone tested the quality of such a port. How reliable is it?
7
votes
2answers
259 views

Mobile Development barrier to entry

I'm looking at making some mobile apps in my spare time and I want to be able to put them up online for anyone to use (and probably open-source). I've worked with PyS60 a while ago and I really liked ...
7
votes
24answers
30k views

How Long Does it Take to Learn Java for a Complete Newbie? [closed]

I have absolutely no programming experience but need to learn Java - enough to take a J2ME fasttrack course. I only have 10 weeks. Can I do this? What's your advice about the best resources I can use ...
7
votes
6answers
7k views

Is there any option for local database like Sqlite for j2me - CLDC devices?

Is there any option for local database like Sqlite for j2me - CLDC devices? PerstLite and OpenBaseMovil are both under dual license. Is there any open source option for this? Or, any alternate way of ...
7
votes
5answers
29k views

How do I convert between ISO-8859-1 and UTF-8 in Java?

Does anyone know how to convert a string from ISO-8859-1 to UTF-8 and back in Java? I'm getting a string from the web and saving it in the RMS (J2ME), but I want to preserve the special chars and get ...
7
votes
5answers
841 views

Is the original Java ideal dead?

I feel that while I love J2ME and Java it's hypocritical of them to have two APIs for Java. Java was designed with "One code, many platforms" in mind, and now it's more like "One API for every OS, and ...
7
votes
4answers
3k views

BlackBerry threading model

I've read a lot of comments mention in passing that the BlackBerry threading model deviates from the Java standard and can cause issues, but no amount of googling has enlightened me on what this means ...
7
votes
11answers
3k views

Debugging j2me on a Device

Has anybody had any success ever attaching a debugger to a tethered device? I am able to debug my j2me application in the emulator, but have a lot of trouble sorting out phone-specific problems when ...
6
votes
2answers
224 views

What is the difference between httpconnection on J2ME and HttpUrlConnection on Android (http error 401)

I connect to two servers (PROD is https, test server is http) on my applicaitons. on J2ME: I can connect to this two servers without a problem. on Android I can't connect to test-server. When ...
6
votes
4answers
212 views

Approximate searching against a list of strings

So yes, I read about how edit distance can be used between strings to decide how "close" are two string to each other. This algorithm, implemented as a Dynamic problem takes O(mn) time, where m and n ...
6
votes
3answers
163 views

Please Advice me on Java mobile app [closed]

I am new to java and I want to create a java app for mobiles. When I approached software companies they asked for "Android / blackberry /symbian etc... Being a newb , i am really surprised by these ...
6
votes
3answers
241 views

Whats the best way to start programming for my non-smartphone?

I have a general old-fashioned phone that has no special app system and uses Java (I assume ME) for the few applications you can use on it. This is still a decent userbase and I'd like to start ...
6
votes
2answers
4k views

Image Button in BlackBerry

How do I implement an image button in BlackBerry?
6
votes
5answers
1k views

Facebook Open Graph without a browser

For a middleware system with internet (which works inside a set-top box) I want to develop a primitive Facebook interface where users can type their user-names and password, showing their latest ...
6
votes
4answers
2k views

How to compare almost similar Strings in Java (ME)? (String distance measure)

I would like to compare two strings and get some score how much these look alike. For example "The sentence is almost similar" and "The sentence is similar". I'm not familiar with existing methods in ...
6
votes
6answers
9k views

How to parse the JSON response in Blackberry/J2ME?

I want to parse the response coming from the server in JSON format. I have done some googling but i can't find any library or jar kind of thing. Everywhere there is provided open source code as zip ...

1 2 3 4 5 79