Search Results

1
vote

j2me service discovery and discoverable same time

As far as I see you try to create simultaneously working server and client, right? Well, I think this is not gonna work, you have to make one phone server and the other one will be a client. …
0
votes

Image.createImage problem in J2ME

Let us have a look at the docs: IllegalArgumentException is thrown if imageData is incorrectly formatted or otherwise cannot be decoded So the possible …
1
vote

Java string comparison?

The answer is very simple: when you compare strings through == operator, you actually compare if two different variables refer to a single String object. And they don't, the string in the array and …
0
votes

Usable JSP/Servlet Hosting

If you don't mind using your own virtual server, I recommend using VPSLink. It's the cheapest I've ever seen, starting with …
4
votes

Making a J2ME Midlet sleep without threads?

I didn't understand whether you mean putting midlet in paused state or just stopping execution for specified time. If it's the latter, actually I don't undesrtand, why you don't want to use …
0
votes

Store data with MIDP RMS and retrieve in PC.

I'd go for JSR 75. It is not actually quite true that it is supported in a limited number of phones, almost all modern phones which don't belong to low-end category support this AP …
1
vote

J2ME - Code once and run everywhere?

First of all, I'd like to say that most of the comments here are true, different JVMs may work slightly differently indeed and you should remember about APIs you are using. However, there' …
0
votes

Java - Installation problem

It looks like something is wrong with your fonts, either some font is damaged, or there is a shortcut to a font in the Fonts folder, not the font itself. Therefore, possible solutions for t …
3
votes

Is there any relation between the class that implements interface and that interface???

"Behaves like..." That's what what I would say. Not is something, but behaves like something. Or as an alternative "can something", but that's more specific than behaviour. …
0
votes

Counting the number of occurrences of each item in a list

Besides the solutions that have been posted the first thing that comes to my mind is to make a table "code - value" and encode the list using codes. It would be very space efficient. …
2
votes

Object doesn’t do anything after instantiation - bad code smell?

There should a purpose for the object to exist. Constructor is only a tool for preparing the object so it can work as needed after creation. If you don't use the object, you don't need to create it …
0
votes

J2ME TextField Exception

This is definitely a JVM bug. If a TextField returned a string, it must be able to accept it. The only thing I can advice is to play a bit with the size of the field or the constraints …
0
votes

How to change the Dimensions of the Applet Viewer in NetBeans 6.7

Go to the project properties, there you choose Application -> Web Start, select Applet descriptor and click the button Applet Parameters. There you can set required dimen …
3
votes

Trouble stopping a loop

Try adding keyword volatile to the variable running: private volatile boolean running = false; This is done to ensure that your thread al …
1
vote

Best API/LIB for encoding/decoding base64/quoted-printable in Java

Why not use one from iharder.net? It is fast and it is in public domain. …