首页 > 代码库 > 从指定文件(字节数组)获取内容以及获取长度
从指定文件(字节数组)获取内容以及获取长度
package cn.felay.io; import java.io.ByteArrayInputStream; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; /** * @author <a mailto:felayman@163.com>felayman</a> * @timer 2014年6月10日 下午3:46:19 */ public class InputStreamDemo { /** * 关闭输入流 * * @param in */ public void freeInputStream(InputStream in) { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } /** * 获取输入流 * * @param fileName * @return */ public InputStream getInputStream(String fileName) { InputStream in = null; try { in = new FileInputStream(fileName); } catch (FileNotFoundException e) { e.printStackTrace(); } return in; } /** * 从指定的文件中获取内容 * * @param fileName * @return */ public String getContentFromFile(String fileName) { InputStream in = this.getInputStream(fileName); byte[] b = new byte[1024]; try { while (in.read(b) != -1) { } } catch (IOException e) { e.printStackTrace(); } finally { this.freeInputStream(in); } String content = new String(b); content = content.trim(); return content; } /** * 获取文件中字节长度 * * @param fileName * @return */ public int getLenFromFile(String fileName) { InputStream in = null; int len = 0; try { in = new FileInputStream(fileName); len = in.available(); } catch (FileNotFoundException e) { System.out.println(e.getLocalizedMessage()); } catch (IOException e) { e.printStackTrace(); } finally { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } return len; } /** * 从字节数组中获取字节长度 * * @param b * @return */ public int getLenFromByte(byte[] b) { InputStream in = null; in = new ByteArrayInputStream(b); int len = 0; try { len = in.available(); } catch (IOException e) { e.printStackTrace(); } finally { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } return len; } public byte[] getContentFromString(String str) { byte[] b = str.getBytes(); return b; } public static void main(String[] args) { // 获取文件中字节长度 InputStreamDemo isd = new InputStreamDemo(); String fileName = "src/res/test1.text"; int fileLen = isd.getLenFromFile(fileName); System.out.println("文件长度为:" + fileLen); // 从指定文件获取内容 String content = isd.getContentFromFile(fileName); System.out.println("获取的内容为:" + content); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。