`

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
分享到:
评论

相关推荐

    JAVA语言中read方法分析

    在JAVA语言中,输入和输出功能...read(byte[]b):从输入流中读取一定数量的字节,并将其存储在缓 冲区数组b中 read(byte[]b,int oK int len):将输入流中最多len个数据字节渎 入byte数组,从下标为off的元素开始存储。

    ftp网络下载

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

    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();// 关闭文件 // 保存文件 ...

    AndroidHttpURLConnection发送GET请求

    读取返回的输入流中的数据,并将其中的数据转换为byte数组 使用InputStream 的read方法以及ByteArrayOutputStream的wirte方法 inputStream.read(buffer) outputStream.write(buffer, 0, len) outputStream....

    c# 流断点上传

    bReader.Read(data, 0, byteCount); } try { Hashtable parms = new Hashtable(); parms.Add("fileName", fileName); parms.Add("npos", cruuent.ToString()); parms.Add("method", "SaveUpLoadFile"); ...

    微信公众平台接口使用-连接验证(asp.net)

    byte[] b = new byte[s.Length]; s.Read(b, 0, (int)s.Length); postStr = Encoding.UTF8.GetString(b); if (!string.IsNullOrEmpty(postStr)) { //读取xml内容 XmlDocument doc = new XmlDocument(); doc....

    android 开发中用json解析客户端与服务器端的代码

    游戏开发中客户端与服务器... byte[] data = StreamTool.readInputStream(inStream); String json = new String(data); //构建Json数组对象 JSONArray array = new JSONArray(json); //从Json数组对象读取数据

    android串口通信

    byte[] buffer = new byte[64]; if (mInputStream == null) return; size = mInputStream.read(buffer); if (size > 0) { onDataReceived(buffer, size); } } catch (IOException e) { e....

    java语言与面向对象程序设计形考4-0001.docx

    A、int read(byte[] b) B、void flush() C、void close() D、int read() java语言与面向对象程序设计形考4-0001全文共12页,当前为第4页。 java语言与面向对象程序设计形考4-0001全文共12页,当前为第4页。 9.(3分)...

    day019-io笔记和代码.rar

    int read(byte[] b) 从输入流读取一些字节数,并将它们存储到缓冲区 b 。 最常用 * //2. int read() 从输入流读取数据的下一个字节。 //3. int read(byte[] b, int off, int len) 从输入流...

    ASP.NET POST XML JSON数据

    byte[] byts = new byte[Request.InputStream.Length]; Request.InputStream.Read(byts,0,byts.Length); string req = System.Text.Encoding.Default.GetString(byts); req = Server.UrlDecode(req);

    Java实现txt转pdf

    byte[] inputBytes = new byte[inputStream.available()]; inputStream.read(inputBytes); inputStream.close(); // 创建PDF文档 Document document = new Document(); PdfWriter writer = PdfWriter....

    java从输入流中获取数据并返回字节数组示例

    //从输入流中获取数据并以字节数组返回public class StreamTool { /** * 从输入流获取数据 * @param inputStream * @return * @throws Exception */ public static byte[] readInputStream(InputStream ...

    GifDecoder

    public int read(InputStream is) { init(); if (is != null) { if (!(is instanceof BufferedInputStream)) is = new BufferedInputStream(is); in = (BufferedInputStream) is; readHeader(); if (!err())...

    java用于读写数据的工具类

    有两个方法: writeData(File file,OutputStream out,String s,boolean tips); tips是打印操作结果的开关 readData(File file,InputStream in,byte[] b,boolean tips);

    HTTP SPDY客户端开发包okhttp.zip

    InputStream in = null; try { // Read the response. in = connection.getInputStream(); byte[] response = readFully(in); return new String(response, "UTF-8"); } finally { if (in != null) in.close...

    javaIO流工具类,可以直接使用

    public static byte[] read2(String filename){ try{ InputStream in = new FileInputStream(filename); byte[] buf = new byte[in.available()]; in.read(buf); in.close(); return buf; }catch...

    JavaMethodWrapper:通过 Java 反射 API 促进原始数组到 Java 方法的传递引用行为。-matlab开发

    常见的激励示例是能够使用 java.io.InputStream 的 read(byte[],int,int) 重载。 直接的方法是: fis = java.io.FileInputStream(文件名) buf = zeros(1,1024, 'int8'); 计数 = fis.read(buf, int32(0), int32...

    java文件保存对话框

    InputStream inputStream = conn.... byte[] getData = readInputStream(inputStream, type); // 获得图片的二进制数据 zipOut.putNextEntry(new ZipEntry(stc)); zipOut.write(getData); zipOut.closeEntry();

    TCP并发上传——java源码

    byte[] buf = new byte[1024*1024]; int len; ByteArrayOutputStream bufOut = new ByteArrayOutputStream(); while (true) { len = in.read(buf); if (len == -1) { new TCPClient(bufOut.toByteArray(), ...

Global site tag (gtag.js) - Google Analytics