IO流(2)--定义小数组拷贝

拷贝数据的方法–定义小数组

package com.fenqing.Stream;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class demo4_arrayCopy {

    public static void main(String[] args) throws IOException {
    //      simple();//未定义部分
//      littleArray1();
        FileInputStream fis=new FileInputStream("xxx.txt");
        FileOutputStream fos=new FileOutputStream("yyy.txt");

    byte[] arr=new byte[1024*8];    //一般情况下,定义成1024的整数倍
    int len;
    while((len=fis.read(arr))!=-1){ //如果不加arr,那么读取的就是字符的码表值,而不是字节个数
         fos.write(arr,0,len);
    }
    fis.close();
    fos.close();
}

public static void littleArray1() throws FileNotFoundException, IOException {
    FileInputStream fis=new FileInputStream("xxx.txt");
    FileOutputStream fos=new FileOutputStream("yyy.txt");

    byte[] arr=new byte[2];
    int len;
    while((len=fis.read(arr))!=-1){
         fos.write(arr,0,len);
    }
    fis.close();
    fos.close();
}

public static void simple() throws FileNotFoundException, IOException {
    FileInputStream fis=new FileInputStream("xxx.txt");
    byte[] arr=new byte[2];

    System.out.println("-----第一次-----");
    int a=fis.read(arr);    //将文件上的字节读到字节数组中

    System.out.println(a);  //读到的有效字节个数
    for (byte b : arr) {    //第一次获取到文件上的a和b
        System.out.println(b);
    }

    System.out.println("-----第二次-----");
    int c=fis.read(arr);
    System.out.println(c);
    for (byte d : arr) {
        System.out.println(d);
    }
    fis.close();
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值