唐祖庭 2021-10-23 15:04 采纳率: 93.3%
浏览 9
已结题

java 求帮助 我这个怎么改变一下?

img


public class Demo4 {
    public static void main(String[] args) {
        //创建输入流对象
        FileInputStream inputStream=new FileInputStream(new File("a.txt"));
        FileInputStream in=new FileInputStream("a.txt");
        // read
        // read单个字节
        //readSinngle(in);
        // read字节数组
        //创建一个容器杯子
        byte[] bytes = new byte[1024];
        // readMulti(in , bytes);
        // read字节数组 的部分
        int readCount =0;
        try {
            readCount=in.read(bytes,0,bytes.length);
        } catch (IOException e) {
            e.printStackTrace();
        }
        System.out.println(new String(bytes,0,readCount));
        // close
        try {
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private static void readMUlti(FileInputStream in, byte[] bytes) throws IOException{
        int readCount =in.read();
        System.out.println(readCount);
        // 把字节数据转化为字符串利用String的构造方法
        String s = new String(bytes , 0 , readCount);
        System.out.println(s);
    }

    private static void readSingle(FileInputStream in) throws IOException{
        int readData =in.read();
        System.out.println(readData);
        int readData2 = in.read();
        System.out.println(readData2);
        int readData3 = in.read();
        System.out.println(readData3);
        int readData4 =in.read();
        System.out.println(readData4);
    }
}

  • 写回答

1条回答 默认 最新

  • 两分与月 2021-10-23 15:21
    关注
            FileInputStream inputStream = null;
            FileInputStream in = null;
            //创建输入流对象
            try {
                inputStream = new FileInputStream(new File("a.txt"));
                in = new FileInputStream("a.txt");
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 10月31日
  • 已采纳回答 10月23日
  • 创建了问题 10月23日

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化