Вопрос

How should I change the geometry datatype to String in Java?

Это было полезно?

Решение

Use BigInteger.

BigInteger bi = new BigInteger("01060000000100000...", 16);

Другие советы

You could use BigInteger. It has a constructor taking a String and a radix as an argument.

So:

new BigInteger(theString, 16);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top