摘要: File file = new File("C:/abc.png");InputStream is = new FileInputStream(file);byte[] byte = new byte[200000];is.read(byte);BASE64Encoder encoder = new BASE64Encoder();String str= encoder.encode(b);BAS... 阅读全文
posted @ 2010-05-25 09:44 lqfalya 阅读(331) 评论(0) 推荐(0) 编辑