It’s a simple java programming techniques… if you want to cast double to stirng, use this one, it’ll preserve the thousands separator:

  1. Double sk = 1300000000.35;
  2. NumberFormat nm = NumberFormat.getNumberInstance();
  3. System.out.println(nm.format(sk));

the latter result would be this:
1.300.000.000,35

Blogdesk is awesome, i have made a tutorial on how to set up blogdesk for Wordpress blog engine. You may see it here. Blogdesk is the best blogging client i have ever tried. What i regret is that this software is not open source and multiplatform. But, overall this software is very handy and practical. Can support multiple blog engine (except blogger). I love using blogdesk for managing my Wordpress and Drupal websites.

PS: But this post is made with petrus blog client, a java based free and open source blog client that can run on all java runtime engine.

You can use AT Command to let your cell phone send or receive SMS message. But the problem is not every manufacutrer has similar AT Command.

This is AT+CNMI commands from many cell phone manufacturers that can be used to make an SMS Server using java.

NOKIA : AT+CNMI=1,1,0,0,0

MOTOROLA : AT+CNMI=3,1

Siemens : AT+CNMI=1,1,2,2,1

Modem GSM Siemens : AT+CNMI=2,1,0,0,0

Tags: ,