假设我有一个String
,我们称之为foo
。这String
可以包含任何值,如字母、数字、特殊字符、UTF-8
特殊字符,如 á 等。例如,这可能是一个真正的值:
"Érdekes szöveget írtam a tegnap, 84 ember olvasta."
我想有以下两种方法:
public BigInteger toBigInteger(String foo)
{
//Returns a BigInteger value that can be associated with foo
}
public String fromBigInteger(BigInteger bar)
{
//Returns a String value that can be associated with bar
}
然后:
String foo = "Érdekes szöveget írtam a tegnap, 84 ember olvasta.";
System.out.println(fromBigInteger(toBigInteger(foo)));
//Output should be: "Érdekes szöveget írtam a tegnap, 84 ember olvasta."
我怎样才能做到这一点?谢谢