Home > Software design >  How to convert hex string to Shift JIS encoding in java?
How to convert hex string to Shift JIS encoding in java?

Time:08-16

How can I convert a word's HEX code string to Shift JIS encoding?

For example, I have a string:

"90DD92E882F08F898AFA89BB82B582DC82B782A9"

And I want to get the following output:

設定を初期化しますか

CodePudding user response:

Assuming you have Java 17 , which added enter image description here

CodePudding user response:

String s = new String(new BigInteger("90DD92E882F08F898AFA89BB82B582DC82B782A9", 16).toByteArray(), "Shift_JIS");

will do it for you for earlier versions

  • Related