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

22e4258acfce079c25b9e86c5266b09a.png

这到底是为什么输入的是"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)

{

}

}

}

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值