come convertire la stringa esadecimale in base64? Ho trovato questa pagina http://home2.paulschou.net/tools/xlate/ ma ho bisogno di qualche funzione in java: String base64 = ...decoder(String hex);
Ho trovato qualcosa in Internet, ma sono difficili e utilizzare array di byte. Sto cercando qualcosa di più semplice thx un saccocome convertire hex in base64
10
A
risposta
18
Date un'occhiata al Commons Codec:
byte[] decodedHex = Hex.decodeHex(hex);
byte[] encodedHexB64 = Base64.codeBase64(decodedHex);
1
Non è probabile trovare qualcosa che converta direttamente da hex a base-64. Dovrai trovare o scrivere un decodificatore esadecimale e un codificatore Base-64 e utilizzare uno byte[]
come modulo intermedio.
Confronta realtà con ciò che si sta chiedendo:
String b64 = encoder.encode(decoder.decode(hex)); /* Too difficult :(!!! */
contro
String b64 = transcoder.transcode(hex); /* So much simpler! */
0
1
Si potrebbe voler controllare questo codice. Ho trovato su google
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import sun.misc.BASE64Encoder;
public class MD5 {
static char[] carr = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
public static String getBase64FromHEX(String input) {
byte barr[] = new byte[16];
int bcnt = 0;
for (int i = 0; i < 32; i += 2) {
char c1 = input.charAt(i);
char c2 = input.charAt(i + 1);
int i1 = intFromChar(c1);
int i2 = intFromChar(c2);
barr[bcnt] = 0;
barr[bcnt] |= (byte) ((i1 & 0x0F) << 4);
barr[bcnt] |= (byte) (i2 & 0x0F);
bcnt++;
}
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(barr);
}
public static synchronized String getMD5_Base64(String input) {
// please note that we dont use digest, because if we
// cannot get digest, then the second time we have to call it
// again, which will fail again
MessageDigest digest = null;
try {
digest = MessageDigest.getInstance("MD5");
} catch (Exception ex) {
ex.printStackTrace();
}
if (digest == null)
return input;
// now everything is ok, go ahead
try {
digest.update(input.getBytes("UTF-8"));
} catch (java.io.UnsupportedEncodingException ex) {
ex.printStackTrace();
}
byte[] rawData = digest.digest();
BASE64Encoder bencoder = new BASE64Encoder();
return bencoder.encode(rawData);
}
private static int intFromChar(char c) {
char clower = Character.toLowerCase(c);
for (int i = 0; i < carr.length; i++) {
if (clower == carr[i]) {
return i;
}
}
return 0;
}
public static void main(String[] args) {
//String password = args[0];
String password = "test";
MessageDigest digest = null;
try {
digest = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
try {
digest.update(password.getBytes("UTF-8"));
} catch (UnsupportedEncodingException ex) {
ex.printStackTrace();
}
byte[] rawData = digest.digest();
StringBuffer printable = new StringBuffer();
for (int i = 0; i < rawData.length; i++) {
printable.append(carr[((rawData[i] & 0xF0) >> 4)]);
printable.append(carr[(rawData[i] & 0x0F)]);
}
String phpbbPassword = printable.toString();
System.out.println("PHPBB : " + phpbbPassword);
System.out.println("MVNFORUM : " + getMD5_Base64(password));
System.out.println("PHPBB->MVNFORUM : " + getBase64FromHEX(phpbbPassword));
}
}
0
In un primo momento si deve importare il Apache Commons Codec biblioteca! https://commons.apache.org/proper/commons-codec/archives/1.9/index.html
Ecco le API per 1.9 Versione http://commons.apache.org/proper/commons-codec/archives/1.9/apidocs/index.html
Poi dovete seguire questi 3 passi
//convert String to char array (1st step)
char[] charArray = myhexString.toCharArray();
// decode the char array to byte[] (2nd step)
byte[] decodedHex = Hex.decodeHex(charArray);
// The String decoded to Base64 (3rd step)
String result= Base64.encodeBase64String(decodedHex);
È probabile (che tu lo sappia o no) essere convertendo esagonale per byte, quindi i byte tornano a base64. –