控制输出问题

来源:5-1 字节字符转换流

粒子酱

2016-09-11 12:38

按照老师的代码,控制台只输出了一个问号,这是为什么?

写回答 关注

3回答

  • 粒子酱
    2016-09-12 20:41:14

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

    // TODO Auto-generated method stub

    FileInputStream in = new FileInputStream("D:\\javaio.txt");

    InputStreamReader isr = new InputStreamReader(in);

    int c;

    while((c=isr.read())!=-1);

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


  • XhstormR
    2016-09-12 07:41:37

    贴代码!

  • 慕妹9026057
    2016-09-11 16:14:41

    文件位置写错没有

文件传输基础——Java IO流

为您介绍IO流的使用,以及对象的序列化和反序列化的内容

133755 学习 · 1030 问题

查看课程

相似问题