10/11/2003, 21:40
|
| | Fecha de Ingreso: enero-2003
Mensajes: 52
Antigüedad: 22 años Puntos: 0 | |
int a String:
int value = 10;
String strValue = String.valueOf(value);
String a Integer:
int value = 0;
String strValue = "10";
try
{
value = Integer.parseInt(strValue);
}
catch(NumberFormatException e)
{
// Llamar al Error Logger o algo asi.
} |