摘要: 1 public String readfile(String filePath){ 2 File file = new File(filePath); 3 InputStream input = null; 4 try { 5 input = new FileInputStream(file); 6... 阅读全文
posted @ 2017-04-05 23:18 hlb 阅读(27536) 评论(0) 推荐(3) 编辑