バイナリデータを含む文字列があります(1110100)テキストを出力して印刷できるようにしたい(1110100は「t」を印刷します)。これを試してみましたが、テキストをバイナリに変換するために使用したものと似ていますが、まったく機能していません:
public static String toText(String info)throws UnsupportedEncodingException{
byte[] encoded = info.getBytes();
String text = new String(encoded, "UTF-8");
System.out.println("print: "+text);
return text;
}
修正や提案をいただければ幸いです。
ありがとう!