摘要:
public void byteToImg(String bytes, String imagePath) throws IOException { byte[] buffer = Base64.decode(bytes); //接收网络中的要进过解码 File file = new File(SDPATH + imagePath); FileOutputStream fos = new FileOutputStream(file); fos.write(buffer); ... 阅读全文
posted @ 2012-04-30 21:40
冲锋的路上的兵
阅读(500)
评论(0)
推荐(0)
浙公网安备 33010602011771号