PushBackInputStream回退流

本文通过实例讲解了Java中PushbackInputStream的使用,演示了如何进行流的回退操作,同时介绍了如何获取系统的默认字符编码。此外,还探讨了文件写入时编码不一致导致的乱码问题,并提供了解决方案。

【例子1】


import java.io.ByteArrayInputStream;  
import java.io.IOException;   
import java.io.PushbackInputStream;  


/**  
 * 回退流操作  
 */  

public class PushBackInputStreamDemo{

    public static void main(String[] args) throws IOException{

        String str = "hello,rollenholt";

        PushbackInputStream push = null;

        ByteArrayInputStream bat = null;

        bat = new ByteArrayInputStream(str.getBytes());

        push = new PushbackInputStream(bat);

        int temp = 0;

        while((temp = push.read()) != -1){

            if(temp == ‘,’){

                push.unread(temp);

                temp = push.read();

                System.out.print("(回退" + (char) temp + ") ");

            }else{

                System.out.print((char) temp);

            }

        }

    }

}

【运行结果】:

hello(回退,) rollenholt

【例子2】


/**  
 * 取得本地的默认编码  
 */  

public class CharSetDemo{

    public static void main(String[] args){

        System.out.println("系统默认编码为:" + System.getProperty("file.encoding"));

    }

}

【运行结果】:

系统默认编码为:GBK

【例子3】乱码的产生:


import java.io.File;   
import java.io.FileOutputStream;    
import java.io.IOException;   
import java.io.OutputStream;   



/**  
 * 乱码的产生  
 */   

public class CharSetDemo2{

    public static void main(String[] args) throws IOException{

        File file = new File("d:" + File.separator + "hello.txt");

        OutputStream out = new FileOutputStream(file);

        byte[] bytes = "你好".getBytes("ISO8859-1");

        out.write(bytes);

        out.close();

    }

}

【运行结果】:

??

一般情况下产生乱码,都是由于编码不一致的问题。

转载于:https://www.cnblogs.com/yuyu666/p/9733916.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值