Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javaでジオメトリデータ型を文字列に変更するにはどうすればよいですか?
を使用しBigIntegerます。
BigInteger
BigInteger bi = new BigInteger("01060000000100000...", 16);
を使用できますBigInteger。String と基数を引数として取るコンストラクターがあります。
そう:
new BigInteger(theString, 16);