Horje
transformer un string en Biginteger java Code Example
transformer un string en Biginteger java
String foo = "some text";
byte[] fooBytes = foo.getBytes();
BigInteger bi = new BigInteger(fooBytes);
transformer un string en Biginteger java
foo = new String(bi.toByteArray());
transformer un string en Biginteger java
public BigInteger toBigInteger(String foo)
{
    return new BigInteger(foo.getBytes());
}

public String fromBigInteger(BigInteger bar)
{
    return new String(bar.toByteArray());
}




Java

Related
math.sin in java Code Example math.sin in java Code Example
private access modifiers Code Example private access modifiers Code Example
java for loop increment by 3 Code Example java for loop increment by 3 Code Example
how to divide a double in java Code Example how to divide a double in java Code Example
how to end a java program Code Example how to end a java program Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10