Skip to content
Advertisement

How do PHP mb_convert_encoding functions use in Java?

I have a base64 encode want convert to utf8 string ,use php mb_convert_encoding convert is normal,code by:

JavaScript

How to convert to utf8 string in java.

JavaScript

I want result is :

JavaScript

Advertisement

Answer

Use Hex class in commons-codec library.

JavaScript

use import org.apache.commons.codec.binary.Hex; and then:

JavaScript

Since in your PHP code the string is selected from byte 1 (substr($p, 1, 12)) you need to remove byte 1 when converting in java code. So:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement