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