摘要:
public String getFileBase64(String filePath) throws IOException {String base64Code = null;InputStream in = null; byte[] data = null;try{ in = new FileInputStream(filePath); data = new byte[in.available()]; in.read(data); }catch (IOException e) { e.printStackTrace(); }finally { if(in != null) ... 阅读全文
posted @ 2013-04-09 08:46
Vic_Ruan
阅读(263)
评论(0)
推荐(0)
浙公网安备 33010602011771号