2012年4月30日
摘要: 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 冲锋的路上的兵 阅读(486) 评论(0) 推荐(0) 编辑