使用 base64 在 PHP 中编码的字符串“gACA”。现在我正在尝试使用base64在java中解码。但解码后得到荒谬的价值。我试过这样:
public class DecodeString{
{
public static void main(String args[]){
String strEncode = "gACA"; //gACA is encoded string in PHP
byte byteEncode[] = com.sun.org.apache.xerces.internal.impl.dv.util.Base64.decode(strEncode );
System.out.println("Decoded String" + new String(k, "UTF-8"));
}
}
输出:
??
请帮帮我