누구든지 Base64를 사용하여 Base64에서 문자열을 디코딩하고 인코딩하는 방법을 알고 있습니다. 다음 코드를 사용하고 있지만 작동하지 않습니다.
String source = "password";
byte[] byteArray = source.getBytes("UTF-16");
Base64 bs = new Base64();
//bs.encodeBytes(byteArray);
System.out.println( bs.encodeBytes(byteArray));
//bs.decode(bs.encodeBytes(byteArray));
System.out.println(bs.decode(bs.encodeBytes(byteArray)));
답변
먼저:
- 인코딩을 선택하십시오. UTF-8은 일반적으로 좋은 선택입니다. 양쪽에 확실히 유효한 인코딩을 고수하십시오. UTF-8 또는 UTF-16 이외의 다른 것을 사용하는 것은 드 would니다.
전송 끝 :
- 바이트 (예를 문자열을 인코딩
text.getBytes(encodingName)
) Base64
클래스를 사용하여 바이트를 base64로 인코딩하십시오.- base64를 전송
수신 종료 :
- base64 받기
Base64
클래스를 사용하여 base64를 바이트로 디코딩- (예를 들어 문자열로 바이트를 디코딩
new String(bytes, encodingName)
)
그래서 같은 :
// Sending side
byte[] data = text.getBytes("UTF-8");
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, "UTF-8");
또는과 StandardCharsets
:
// Sending side
byte[] data = text.getBytes(StandardCharsets.UTF_8);
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, StandardCharsets.UTF_8);
답변
로 인코딩 된 문자열을 디코딩하는 방법에 대한 정보를 검색하는 동안 여기에 나온 다른 사람에게 Base64.encodeBytes()
내 솔루션이 있습니다.
// encode
String ps = "techPass";
String tmp = Base64.encodeBytes(ps.getBytes());
// decode
String ps2 = "dGVjaFBhC3M=";
byte[] tmp2 = Base64.decode(ps2);
String val2 = new String(tmp2, "UTF-8");
또한 이전 버전의 Android를 지원하므로 http://iharder.net/base64 에서 Robert Harder의 Base64 라이브러리를 사용하고 있습니다.
답변
들어 코 틀린의 메가 더 나은이를 사용하는 :
fun String.decode(): String {
return Base64.decode(this, Base64.DEFAULT).toString(charset("UTF-8"))
}
fun String.encode(): String {
return Base64.encodeToString(this.toByteArray(charset("UTF-8")), Base64.DEFAULT)
}
예:
Log.d("LOGIN", "TEST")
Log.d("LOGIN", "TEST".encode())
Log.d("LOGIN", "TEST".encode().decode())
답변
당신이 사용하는 경우 코 틀린를 이 같이 사용하는 것보다
인코딩
val password = "Here Your String"
val data = password.toByteArray(charset("UTF-8"))
val base64 = Base64.encodeToString(data, Base64.DEFAULT)
디코딩
val datasd = Base64.decode(base64, Base64.DEFAULT)
val text = String(datasd, charset("UTF-8"))
답변
같은
String source = "password";
byte[] byteArray;
try {
byteArray = source.getBytes("UTF-16");
System.out.println(new String(Base64.decode(Base64.encode(byteArray,
Base64.DEFAULT), Base64.DEFAULT)));
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
답변
암호화하려면
byte[] encrpt= text.getBytes("UTF-8");
String base64 = Base64.encodeToString(encrpt, Base64.DEFAULT);
해독하려면
byte[] decrypt= Base64.decode(base64, Base64.DEFAULT);
String text = new String(decrypt, "UTF-8");
답변
이전 답변을 바탕으로 누군가가 그것을 사용하려는 경우 다음 유틸리티 방법을 사용하고 있습니다.
/**
* @param message the message to be encoded
*
* @return the enooded from of the message
*/
public static String toBase64(String message) {
byte[] data;
try {
data = message.getBytes("UTF-8");
String base64Sms = Base64.encodeToString(data, Base64.DEFAULT);
return base64Sms;
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return null;
}
/**
* @param message the encoded message
*
* @return the decoded message
*/
public static String fromBase64(String message) {
byte[] data = Base64.decode(message, Base64.DEFAULT);
try {
return new String(data, "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
return null;
}