java io


import com.sun.corba.se.impl.orbutil.concurrent.Sync;

import java.io.*;

/**
 * Created by Administrator on 2017/2/14.
 */
public class FileFirst {

    //下面代码功能是这样,每次循环提示输入两个字符串,然后提示输入一个字符,如果输入的字符为“y”“Y”则跳出循环程序终止,否则重复上述过程。
    public static void main(String[] args) throws IOException{
        // TODO Auto-generated method stub
        String fileName = "D:/test2.log";
        readFileByBytes(fileName);
        //readFileByChars(fileName);
        //readFileByLines(fileName);
        //readFileByRandomAccess(fileName);
    }

    /**
     * 随机读取文件内容
     */
    public static void readFileByRandomAccess(String fileName) {
        RandomAccessFile randomFile = null;
        try {
            System.out.println("随机读取一段文件内容:");
            // 打开一个随机访问文件流,按只读方式
            randomFile = new RandomAccessFile(fileName, "r");
            // 文件长度,字节数
            long fileLength = randomFile.length();
            // 读文件的起始位置
            int beginIndex = (fileLength > 4) ? 0 : 0;
            // 将读文件的开始位置移到beginIndex位置。
            randomFile.seek(beginIndex);
            byte[] bytes = new byte[10];
            int byteread = 0;
            // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
            // 将一次读取的字节数赋给byteread
            while ((byteread = randomFile.read(bytes)) != -1) {
                System.out.write(bytes, 0, byteread);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (randomFile != null) {
                try {
                    randomFile.close();
                } catch (IOException e1) {
                }
            }
        }
    }
    /**
     * 以行为单位读取文件,常用于读面向行的格式化文件
     */
    public static void readFileByLines(String fileName) {
        File file = new File(fileName);
        BufferedReader reader = null;
        try {
            System.out.println("以行为单位读取文件内容,一次读一整行:");
            reader = new BufferedReader(new FileReader(file));
            String tempString = null;
            int line = 1;
            // 一次读入一行,直到读入null为文件结束
            while ((tempString = reader.readLine()) != null) {
                // 显示行号
                System.out.println("line " + line + ": " + tempString);
                line++;
            }
            reader.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }

    /**
     * 以字符为单位读取文件,常用于读文本,数字等类型的文件
     */
    public static void readFileByChars(String fileName) {
        File file = new File(fileName);
        Reader reader = null;
        try {
            System.out.println("以字符为单位读取文件内容,一次读一个字节:");
            // 一次读一个字符
            reader = new InputStreamReader(new FileInputStream(file));
            int tempchar;
            while ((tempchar = reader.read()) != -1) {
                // 对于windows下,\r\n这两个字符在一起时,表示一个换行。
                // 但如果这两个字符分开显示时,会换两次行。
                // 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。
                if (((char) tempchar) != '\r') {
                    System.out.print((char) tempchar);
                }
            }
            reader.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        try {
            System.out.println("\n以字符为单位读取文件内容,一次读多个字节:");
            // 一次读多个字符
            char[] tempchars = new char[30];
            int charread = 0;
            reader = new InputStreamReader(new FileInputStream(fileName));
            // 读入多个字符到字符数组中,charread为一次读取字符数
            while ((charread = reader.read(tempchars)) != -1) {
                // 同样屏蔽掉\r不显示
                if ((charread == tempchars.length)
                        && (tempchars[tempchars.length - 1] != '\r')) {
                    System.out.print(tempchars);
                } else {
                    for (int i = 0; i < charread; i++) {
                        if (tempchars[i] == '\r') {
                            continue;
                        } else {
                            System.out.print(tempchars[i]);
                        }
                    }
                }
            }

        } catch (Exception e1) {
            e1.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }
    }
    /**
     * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
     */
    public static void readFileByBytes(String fileName) {
        File file = new File(fileName);
        InputStream in = null;
        try {
            System.out.println("以字节为单位读取文件内容,一次读一个字节:");
            // 一次读一个字节
            in = new FileInputStream(file);
            int tempbyte;
            while ((tempbyte = in.read())!=-1) {
                System.out.println(tempbyte);
            }
        } catch (Exception e) {
            // TODO: handle exception
            e.printStackTrace();
        }

        try {
            System.out.println("以字节为单位读取文件内容,一次读多个字节:");
            // 一次读多个字节
            byte[] tempbytes = new byte[1];
            int byteread = 0;
            in = new FileInputStream(fileName);
            // 读入多个字节到字节数组中,byteread为一次读入的字节数
            while ((byteread = in.read(tempbytes)) != -1) {
                System.out.write(tempbytes, 0, byteread);//好方法,第一个参数是数组,第二个参数是开始位置,第三个参数是长度
            }
        } catch (Exception e1) {
            e1.printStackTrace();
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e1) {
                }
            }
        }
    }

    /**
     * 显示输入流中还剩的字节数
     */
    private static void showAvailableBytes(InputStream in) {
        try {
            System.out.println("当前字节输入流中的字节数为:" + in.available());
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}


java流操作对文件的分割和合并
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.SequenceInputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Enumeration;
import java.util.List;
/**
 * 文件的切割和合并
 * 1.要切割和合并文件:主要考虑的就是文件的源地址,目标地址,暂存文件地址和文件名称
 * 2.切割文件:判断给的暂存地址是否存在,不存在,则创建;从源地址中读出文件,按照给定的大小进行文件的切割操作放入暂存地址中
 * 3.合并文件:判断给定的目标地址是否存在,不存在,则创建;定义List集合将暂存地址中的文件全部读取出来,放到list集合中
 *          然后使用Enumeration列举出所有文件,合并流合并文件
 *          最后写入到目标的地址中
 * :本例子中所有的异常都采用抛出的方式处理
 * @author aflyun
 *
 */
public class TestFileCutUnion1 {

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

        String fSrc = "D:/test1.log";//源文件的目录
        String fDir = "D:/3";//目标文件的目录
        String fTemp = "D:/4";//暂存文件的目录
        File srcFile = new File(fSrc);
        File dirFile = new File(fDir);
        File tempFile = new File(fTemp);
        String fileName = srcFile.getName();//获取文件的名称
        cutFile(srcFile,tempFile);//调用分割方法
        unionFile(dirFile,tempFile,fileName);//调用合并方法


    }

    /**
     * 切割文件
     * @param srcFile
     * @param tempFile
     * @throws IOException
     */

    public static void cutFile(File srcFile, File tempFile) throws IOException {
        //读取源地址文件
        FileInputStream fis = new FileInputStream(srcFile);
        FileOutputStream fos = null;
        //是否为文件,不是就创建
        if(!tempFile.isFile()){
            tempFile.mkdirs();
        }

        byte[] b = new byte[10000];
        int len =0;
        int count = 0;
        while((len=fis.read(b)) != -1){
            int num = count++;
            //写入暂存地址目录中
            fos = new FileOutputStream(new File(tempFile, num+".part"));
            fos.write(b, 0, len);

        }
        fos.flush();
        fos.close();
        fis.close();

        System.out.println("分割完成!");
    }
    /**
     * 合并文件
     * @param dirFile
     * @param tempFile
     * @param fileName
     * @throws IOException
     */
    public static void unionFile(File dirFile, File tempFile, String fileName) throws IOException {
        //判断目标地址是否存在,不存在则创建
        if(!dirFile.isFile()){
            dirFile.mkdirs();
        }
        List<FileInputStream> list = new ArrayList<FileInputStream>();
        //获取暂存地址中的文件
        File[] files = tempFile.listFiles();

        for (int i = 0; i < files.length; i++) {
            //FileInputStream读取放入list集合
            list.add(new FileInputStream(new File(tempFile, i+".part")));
        }
        //使用 Enumeration(列举) 将文件全部列举出来
        Enumeration<FileInputStream> eum = Collections.enumeration(list);
        //SequenceInputStream合并流 合并文件
        SequenceInputStream sis = new SequenceInputStream(eum);
        FileOutputStream fos = new FileOutputStream(new File(dirFile, fileName));
        byte[] by = new byte[100];
        int len;
        while((len=sis.read(by)) != -1){
            fos.write(by, 0, len);
        }
        fos.flush();
        fos.close();
        sis.close();
        System.out.println("合并完成!");
    }
}


FileInputStream与BufferedInputStream区别:
FileInputStream是字节流,BufferedInputStream是字节缓冲流,使用BufferedInputStream读资源比FileInputStream读取资源的效率高(BufferedInputStream的read方法会读取尽可能多的字节),且FileInputStream对象的read方法会出现阻塞;
 
FileInputStream与FileReader区别:
FileInputStream是字节流,FileReader是字符流,用字节流读取中文的时候,可能会出现乱码,而用字符流则不会出现乱码,而且用字符流读取的速度比字节流要快;

详细代码

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. FileStreamDemo.java  
  2. import java.io.*;  
  3. public class FileStreamDemo {  
  4.     public static void main(String[] args) {  
  5.         try {  
  6.             FileInputStream in = new FileInputStream("FileCopy.java");  
  7.             FileOutputStream out = new FileOutputStream("fileoutput.txt");  
  8.             byte[] bytearray = new byte[1024];  
  9.             do {  
  10.                 in.read(bytearray, 0, 1024);  
  11.                out.write(bytearray);  
  12.             } while (in.available() > 0);  
  13.             in.close();  
  14.             out.close();  
  15.         } catch (ArrayIndexOutOfBoundsException e) {  
  16.             e.printStackTrace();  
  17.         } catch (IOException e) {  
  18.             e.printStackTrace();  
  19.         }  
  20.     }  
  21. }  
  22. BufferedStreamDemo.java  
  23. import java.io.*;  
  24. public class FileStreamDemo {  
  25.     public static void main(String[] args) {  
  26.         try {  
  27.             FileInputStream in = new FileInputStream("FileCopy.java");  
  28.             FileOutputStream out = new FileOutputStream("bufferoutput.txt");  
  29.             BufferedInputStream bufferedIn = new BufferedInputStream(in);  
  30.             BufferedOutputStream bufferedOut = new BufferedOutputStream(out);  
  31.             byte[] data = new byte[1];  
  32.             while (bufferedIn.read(data) != -1) {  
  33.                 bufferedOut.write(data);  
  34.             }  
  35.             bufferedOut.flush();  
  36.             bufferedIn.close();  
  37.             bufferedOut.close();  
  38.         } catch (ArrayIndexOutOfBoundsException e) {  
  39.             e.printStackTrace();  
  40.         } catch (IOException e) {  
  41.             e.printStackTrace();  
  42.         }  
  43.  }  
  44. import java.io.*;  
  45. class  CopyText  
  46. {  
  47.     public static void main(String[] args) throws IOException  
  48.     {  
  49.         FileReader fr = new FileReader("FileCopy.java");  
  50.         FileWriter fw = new FileWriter("filewriter.txt");  
  51.         char[] arr = new char[1024];  
  52.         int num = 0;  
  53.         while((num=fr.read(arr))!=-1)  
  54.         {  
  55.             fw.write(arr,0,num);  
  56.         }  
  57.         fw.close();  
  58.         fr.close();  
  59.     }  
  60. }  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值