AYUDA PARA TESIS !!!!!
Hola , escribo esto con la esperanza que alguien me pueda ayudar !!!!
El problema que tengo es que necesita convertir un numero entero a su correspondiente binario y tambien viceversa . Si alguine sabe o me recomienda algo !!!!
Gracias
El problema que tengo es que necesita convertir un numero entero a su correspondiente binario y tambien viceversa . Si alguine sabe o me recomienda algo !!!!
Gracias
Hola mira se puede resolver de la siguiente manera con:
toBinaryString
public static String toBinaryString(int i)Returns a string representation of the integer argument as an unsigned integer in base 2.
The unsigned integer value is the argument plus 232 if the argument is negative; otherwise it is equal to the argument. This value is converted to a string of ASCII digits in binary (base 2) with no extra leading 0s. If the unsigned magnitude is zero, it is represented by a single zero character '0' ('u0030'); otherwise, the first character of the representation of the unsigned magnitude will not be the zero character. The characters '0' ('u0030') and '1' ('u0031') are used as binary digits.
Parameters:
i - an integer to be converted to a string.
Returns:
the string representation of the unsigned integer value represented by the argument in binary (base 2).
Since:
JDK1.0.2
//linea de codigo de entero a cadena
String numeroBinario=Integer.toBinaryString();
Tambien lo puedes checar en:
http://forum.java.sun.com/thread.jspa?threadID=695055&messageID=4036905
toBinaryString
public static String toBinaryString(int i)Returns a string representation of the integer argument as an unsigned integer in base 2.
The unsigned integer value is the argument plus 232 if the argument is negative; otherwise it is equal to the argument. This value is converted to a string of ASCII digits in binary (base 2) with no extra leading 0s. If the unsigned magnitude is zero, it is represented by a single zero character '0' ('u0030'); otherwise, the first character of the representation of the unsigned magnitude will not be the zero character. The characters '0' ('u0030') and '1' ('u0031') are used as binary digits.
Parameters:
i - an integer to be converted to a string.
Returns:
the string representation of the unsigned integer value represented by the argument in binary (base 2).
Since:
JDK1.0.2
//linea de codigo de entero a cadena
String numeroBinario=Integer.toBinaryString();
Tambien lo puedes checar en:
http://forum.java.sun.com/thread.jspa?threadID=695055&messageID=4036905