質問

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