My Blog

All about my activities, Ideas and everything.

Category: J2ME

How to : J2ME REST Client

This is the example of J2ME REST Client. Very easy. It’s just a HTTPConnection. 123456789101112131415161718192021222324252627282930   try {         HttpConnection connection = null;         InputStream is = null;         final ByteArrayOutputStream bos = new ByteArrayOutputStream();         String response = null;         [...]

Tutorial : J2ME and Netbeans : How to test RecordStore with emulator

I’m using Netbeans 6.9 and implementing RecordStore and I want to test that with emulator. How would I do that? because every time I close the emulator, the state will be deleted or gone in some way. This is my way of doing that. Basically, you just have to actually install the application in the [...]