Buscando por la red encontre varios metodos para convertir tipos en Java aqui se los dejo ojala les sirva :)
Entero (int) a cadena (String):
String myString = Integer.toString(my int value)
String myString = Integer.toString(my int value)
Cadena (String) a entero (int):
int i = Integer.parseInt(str);
int i = Integer.valueOf(str).intValue();
int i = Integer.parseInt(str);
int i = Integer.valueOf(str).intValue();
Double a cadena (String):
String str = Double.toString(i);
String str = Double.toString(i);
Long a cadena (String):
String str = Long.toString(l);
String str = Long.toString(l);
Float a cadena (String)
String str = Float.toString(f);
String str = Float.toString(f);
Cadena (String) a Double:
double d = Double.valueOf(str).doubleValue();
double d = Double.valueOf(str).doubleValue();
Cadena (String) a Long:
long l = Long.valueOf(str).longValue();
long l = Long.parseLong(str);
long l = Long.valueOf(str).longValue();
long l = Long.parseLong(str);
Cadena (String) a Float:
float f = Float.valueOf(str).floatValue();
float f = Float.valueOf(str).floatValue();
Decimal a Binario:
int i = 42;
String binstr = Integer.toBinaryString(i);
int i = 42;
String binstr = Integer.toBinaryString(i);
Decimal a hexadecimal :
int i = 42;
String hexstr = Integer.toString(i, 16);
ó también:
String hexstr = Integer.toHexString(i);
int i = 42;
String hexstr = Integer.toString(i, 16);
ó también:
String hexstr = Integer.toHexString(i);
Código ASCII a Cadena (String):
int i = 64;
String aChar = new Character((char)i).toString();
int i = 64;
String aChar = new Character((char)i).toString();
Entero a Código ASCII:
char c = 'A';
int i = (int) c; // i will have the value 65 decimal
char c = 'A';
int i = (int) c; // i will have the value 65 decimal
Entero a Booleano
b = (i != 0);
b = (i != 0);
Booleano a
Entero:
i = (b)?1:0;
i = (b)?1:0;
Sígueme en facebook
y ayúdame a llegar a más personas
.
https://www.facebook.com/pages/Espacio-Hacker/393964274047994
https://www.facebook.com/pages/Espacio-Hacker/393964274047994
excelente ya tengo para consultar cada vez que me olvide Grax!
ResponderEliminarbuen post saludos desde www.geekscrew.org
ResponderEliminarBuen aporte :) saludos
ResponderEliminarbuen aporte man (Y)
ResponderEliminar