猿问

java的io输入输出中的字节输出的编码

这到底是为什么输入的是"1234567890"而写到文件里面的却多了几个数字?
我不知道为什么会错误,感觉像是编码集的问题,可是到底因为什么又说不出来?

import java.util.* ;

import java.io.* ;

public class Test2 

{

    public static void main(String[] args) 

    {

        try

        {

            Scanner sc = new Scanner(System.in) ;

            File a = new File("." , "out.txt") ;

            FileOutputStream t = new FileOutputStream(a) ;

            byte[] buffer = new byte[1024] ;

            int count = 0 ;

            String temp = sc.next() ;

            ByteArrayInputStream bi = new ByteArrayInputStream(temp.getBytes()) ;


            while((count = bi.read(buffer , 0 , 10))!= -1)

            {

                t.write(buffer , 0 , count) ;

            }

        }

        catch (IOException e)

        {

        }

    }

}

我知道那里错误了,谢谢大家,这个是改正后的代码

慕标琳琳
浏览 508回答 1
1回答

慕森王

buffer在最后后面的没有更新,所以最后有4个的重复也被重新输入到了文件里面,不是编码集问题
随时随地看视频慕课网APP

相关分类

Java
我要回答