图片的String与byte[]转换方式, byte[] best = Base64.decode(image, Base64.DEFAULT); String image = Base64.encodeToString(bestface, Base64.DEFAULT);
不能直接使用
String image;
byte[] best;
image = new String(best);
best = image.getByte();
方式转换
图片的String与byte[]转换方式, byte[] best = Base64.decode(image, Base64.DEFAULT); String image = Base64.encodeToString(bestface, Base64.DEFAULT);
不能直接使用
String image;
byte[] best;
image = new String(best);
best = image.getByte();
方式转换