mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
Added utility methods for converting string to UTF-8 and vice versa.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package org.briarproject.util;
|
||||
|
||||
import java.nio.charset.Charset;
|
||||
|
||||
public class StringUtils {
|
||||
|
||||
private static final char[] HEX = new char[] {
|
||||
@@ -11,6 +13,14 @@ public class StringUtils {
|
||||
return s == null || s.length() == 0;
|
||||
}
|
||||
|
||||
public static byte[] toUtf8(String s) {
|
||||
return s.getBytes(Charset.forName("UTF-8"));
|
||||
}
|
||||
|
||||
public static String fromUtf8(byte[] bytes) {
|
||||
return new String(bytes, Charset.forName("UTF-8"));
|
||||
}
|
||||
|
||||
/** Converts the given byte array to a hex character array. */
|
||||
public static char[] toHexChars(byte[] bytes) {
|
||||
char[] hex = new char[bytes.length * 2];
|
||||
|
||||
Reference in New Issue
Block a user