`

InputStream中read()与read(byte[] b)

 
阅读更多
read()与read(byte[] b)这两个方法在抽象类InputStream中前者是作为抽象方法存在的,后者不是,JDK API中是这样描述两者的:

1:read() :
从输入流中读取数据的下一个字节,返回0到255范围内的int字节值。如果因为已经到达流末尾而没有可用的字节,则返回-1。在输入数据可用、检测到流末尾或者抛出异常前,此方法一直阻塞。

2:read(byte[] b) : 
从输入流中读取一定数量的字节,并将其存储在缓冲区数组 b 中。以整数形式返回实际读取的字节数。在输入数据可用、检测到文件末尾或者抛出异常前,此方法一直阻塞。如果 b 的长度为 0,则不读取任何字节并返回 0;否则,尝试读取至少一个字节。如果因为流位于文件末尾而没有可用的字节,则返回值 -1;否则,至少读取一个字节并将其存储在 b 中。将读取的第一个字节存储在元素 b[0] 中,下一个存储在 b[1] 中,依次类推。读取的字节数最多等于 b 的长度。设 k 为实际读取的字节数;这些字节将存储在 b[0] 到 b[k-1] 的元素中,不影响 b[k] 到 b[b.length-1] 的元素。

由帮助文档中的解释可知,read()方法每次只能读取一个字节,所以也只能读取由ASCII码范围内的一些字符。这些字符主要用于显示现代英语和其他西欧语言。而对于汉字等unicode中的字符则不能正常读取。只能以乱码的形式显示。

对于read()方法的上述缺点,在read(byte[] b)中则得到了解决,就拿汉字来举例,一个汉字占有两个字节,则可以把参数数组b定义为大小为2的数组即可正常读取汉字了。当然b也可以定义为更大,比如如果b=new byte[4]的话,则每次可以读取两个汉字字符了,但是需要注意的是,如果此处定义b 的大小为3或7等奇数,则对于全是汉字的一篇文档则不能全部正常读写了。

下面用实例来演示一下二者的用法:
实例说明:类InputStreamTest1.java 来演示read()方法的使用。类InputStreamTest2.java来演示read(byte[] b)的使用。两个类的主要任务都是通过文件输入流FileInputStream来读取文本文档xuzhimo.txt中的内容,并且输出到控制台上显示。

先看一下xuzhimo.txt文档的内容



InputStreamTest1.java
/**
 * User: liuwentao
 * Time: 12-1-25 上午10:11
 */
public class InputStreamTest1 {
    public static void main(String[] args){
        String path = "D:\\project\\opensouce\\opensouce_demo\\base_java\\classes\\demo\\java\\inputstream\\";
        File file = new File(path + "xuzhimo.txt");
        InputStream inputStream = null;
        int i=0;
        try {
            inputStream = new FileInputStream(file);
            while ((i = inputStream.read())!=-1){
                System.out.print((char)i + "");
            }
        }catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

执行结果:



如果将while循环中的 (char)去掉,即改成:
引用
System.out.print(i + "");

则执行结果:



InputStreamTest2.java
/**
 * User: liuwentao
 * Time: 12-1-25 上午10:11
 */
public class InputStreamTest2 {
    public static void main(String[] args){
        String path = "D:\\project\\opensouce\\opensouce_demo\\base_java\\src\\demo\\java\\inputstream\\";
        File file = new File(path + "xuzhimo.txt");
        InputStream inputStream = null;
        int i=0;
        try {
            inputStream = new FileInputStream(file);
            byte[] bytes = new byte[16];
            while ((i = inputStream.read(bytes))!=-1){
                String str = new String(bytes);
                System.out.print(str);
            }
        }catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

执行结果:



遗憾的是,还是有乱码,解决办法可以参见下面教程
http://wentao365.iteye.com/blog/1183951

修改后的代码:
/**
 * User: liuwentao
 * Time: 12-1-25 上午10:11
 */
public class InputStreamTest3 {
    public static void main(String[] args) {
        String path = "D:\\project\\opensouce\\opensouce_demo\\base_java\\src\\demo\\java\\inputstream\\";
        File file = new File(path + "xuzhimo.txt");
        InputStream inputStream = null;
        String line;
        StringBuffer stringBuffer = new StringBuffer();
        try {
            //InputStream :1)抽象类,2)面向字节形式的I/O操作(8 位字节流) 。
            inputStream = new FileInputStream(file);
            //Reader :1)抽象类,2)面向字符的 I/O操作(16 位的Unicode字符) 。
            Reader reader = new InputStreamReader(inputStream, "UTF-8");
            //增加缓冲功能
            BufferedReader bufferedReader = new BufferedReader(reader);
            while ((line = bufferedReader.readLine()) != null) {
                stringBuffer.append(line);
            }
            if (bufferedReader != null) {
                bufferedReader.close();
            }
            String content = stringBuffer.toString();
            System.out.print(content);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

执行结果:



还是遗憾,没有换行。

解决办法,通过 commons-io-*.jar
/**
 * User: liuwentao
 * Time: 12-1-25 上午10:11
 */
public class InputStreamTest4 {
    public static void main(String[] args) {
        String path = "D:\\project\\opensouce\\opensouce_demo\\base_java\\src\\demo\\java\\inputstream\\";
        File file = new File(path + "xuzhimo.txt");

        String content = null;
        try {
            content = FileUtils.readFileToString(file, "utf-8");
        } catch (IOException e) {
            e.printStackTrace();
        }
        System.out.println("content:" + content);
    }
}

执行结果:




  • 大小: 21.6 KB
  • 大小: 19.4 KB
  • 大小: 10.7 KB
  • 大小: 19.2 KB
  • 大小: 14.9 KB
  • 大小: 16.9 KB
  • 大小: 15.5 KB
分享到:
评论

相关推荐

    读取图片数据到byte[]数组,合并inputStream每次读取产生的缓冲byte[]

    在实际应用中,`InputStream`的多次读取可能涉及到`BufferedInputStream`的`read()`方法,它每次会读取一定大小的缓冲区。为了合并这些缓冲,我们需要维护一个`List<byte[]>`来存储每次读取的结果,然后在所有数据...

    Blob、InputStream、byte 互转

    该函数创建了一个`ByteArrayOutputStream`对象,然后逐个读取`InputStream`中的字节并写入`ByteArrayOutputStream`中,最后转换为`byte[]`数组。 2. **byte[]转InputStream** ```java public InputStream ...

    springboot 解决InputStream只能读取一次的问题

    本篇文章将详细讲解如何在Spring Boot应用中解决`InputStream`只能读取一次的问题。 首先,了解`InputStream`的工作原理。`InputStream`是Java I/O中的基础类,它定义了读取字节流的基本操作。当我们尝试从`...

    Java中InputStream类.pdf

    - `public int read(byte[] b) throws IOException`: 读取多个字节,存入字节数组`b`中,返回实际读取的字节数。 - `public int read(byte[] b, int off, int len) throws IOException`: 类似于上一个方法,但可以...

    JAVA语言中read方法分析

    当需要一次性读取多个字节并将它们存储到数组中时,则可以选择`read(byte[] b)`或`read(byte[] b, int off, int len)`。 #### 三、案例分析 假设我们要编写一个程序,该程序需要通过键盘接收两个整数,然后找出这...

    java InputStream读取数据问题

    在Java编程中,`InputStream`是Java I/O流的基础类,用于从各种输入源读取数据。...对于压缩包中的`socketTest`文件,可能是用于测试网络数据传输的Socket编程示例,与`InputStream`在处理网络数据流时的应用紧密相关。

    InputStream与OutputStream及File间互转

    在Java编程语言中,`InputStream`和`OutputStream`是处理数据流的核心类,它们属于Java的I/O(Input/Output)框架。`File`类则用于处理文件操作,如读写、创建、删除等。理解如何在这些对象之间进行转换是Java开发中...

    IO流文档InputStream / OutputStream

    InputStream是所有输入流的抽象超类,它提供了基本的读取方法,如read()、read(byte[] b)等。InputStream有多种实现类,如FileInputStream、PipedInputStream、FilterInputStream等,每种实现类都有其特定的读取方式...

    Java String与Byte类型转换

    在Java编程中,String对象和Byte...总之,Java中的String与Byte类型的转换是编程中不可或缺的部分,尤其在网络编程中,理解这两种类型之间的转换方式及其在网络数据交换中的作用,对于编写高效、可靠的程序至关重要。

    将输出流OutputStream转化为输入流InputStream的方法

    在Java编程中,有时我们可能需要将一个已经写入数据的`OutputStream`转换为`InputStream`,以便重新读取这些数据。这种情况通常出现在临时存储或处理数据时,例如在网络传输或者存储到内存中的场景。本篇文章将深入...

    Java实现inputstream流的复制代码实例

    * `read(byte[] b)`:读取多个字节到字节数组中 * `close()`:关闭输入流 InputStream 的限制 InputStream 对象有一个限制:它只能读取一次。也就是说,一旦读取了 InputStream 对象,它就不能再次读取。这是因为 ...

    解析Java的InputStream类并借助其读取ppt文件

    3. `InputStream.read(byte[] b)`与`InputStream.read(byte[] b, int off, int len)`: 这两个方法用于读取多个字节。`read(byte[] b)`尝试读取`b.length`个字节到字节数组`b`中,但不保证一定能读取这么多,可能只...

    Java中的字节流文件读取教程(一)

    InputStream中还有其他几个方法,如read(byte b[])、read(byte b[], int off, int len)、skip(long n)、close()、mark(int readlimit)、reset()、markSupported()等。这些方法都是用于读取文件的字节流, skip方法...

    Java InputStream的多种使用详解

    在上面的代码中,我们首先打开了一个文件输入流,然后使用 read 方法读取数据,并将其存储在 byte 数组中。最后,我们关闭了输入流,以释放系统资源。 二、FileInputStream 的使用 FileInputStream 是 InputStream...

    通过jsoup,输入流InputStream爬取图片PaQuPic.rar,有意者入

    **JSoup库与Java爬虫基础** JSoup是一款强大的Java库,专为处理HTML文档而设计。它提供了方便的API,使得我们能够解析、提取和修改HTML内容,这对于网络爬虫开发尤其有用。在本教程中,我们将探讨如何利用JSoup结合...

    java 中InputStream,String,File之间的相互转化对比

    在Java编程中,InputStream、String和File是三个非常基础且重要的类,它们分别代表了数据流、文本字符串和文件对象。在实际开发中,我们经常需要在这三者之间进行转换,以便于处理不同类型的输入输出。以下是关于这...

    Java 类型相互转换byte[]类型,Blob类型详细介绍

    在Java编程中,数据存储和传输常常涉及到不同类型的数据转换,特别是在数据库操作中,与二进制大数据相关的类型如`byte[]`(字节数组)和`Blob`(Binary Large Object)之间的转换尤为常见。本篇文章将详细讲解如何...

    ftp网络下载

    public static byte[] readInputStream(InputStream inputStream) throws IOException { byte[] buffer = new byte[1024]; int len = 0; ByteArrayOutputStream bos = new ByteArrayOutputStream(); while (...

    Java中的字节流.

    - `public int read(byte[] b) throws IOException`:从流中读取一系列字节到byte数组`b`中。返回实际读取的字节数,如果流已结束则返回-1。 - `public void read(byte[] b, int off, int len) throws IOException...

    java io InputStream and outputStream

    byte[] cont = new byte[(int) file1.length()]; is.read(cont);// 读取文件 for (int i = 0; i ; i++) { System.out.print((char) cont[i]); } is.close();// 关闭文件 // 保存文件 ...

Global site tag (gtag.js) - Google Analytics