>Integer myInteger = new Integer(your_int_value); >myInteger.toString();
String result = Integer.toString(your_int_value,10); --or-- String result = String.valueOf(your_int_value); (The second one calls the first one internally.) tony. =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff EJB-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
