long l = 12345L; String str = DecimalFormat.getNumberInstance().format(l); System.out.println(str); //str is '12,345' //if you don't want formatting str = new DecimalFormat("#").format(l); System.out.println(str); //str is '12345'