美文网首页
文件输入字节流(InputStream)

文件输入字节流(InputStream)

作者: Joy_yang17 | 来源:发表于2018-05-23 18:52 被阅读25次
public class InputByStream {
     public static void main(String args[ ]){
           try {
            FileInputStream fis = new FileInputStream("learn.txt");
            byte b[] = new byte[1024];
            
            fis.read(b);
            
            String str = new String(b, "UTF-8");
            
            System.out.println(str);
             
            fis.close();
            
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }  
     }
}

相关文章

网友评论

      本文标题:文件输入字节流(InputStream)

      本文链接:https://www.haomeiwen.com/subject/cnkdjftx.html