Java文件操作实例详解

本文实例为大家分享了Java文件操作的具体代码,供大家参考,具体内容如下

简介

本程序主要采用了FileInputStream和FileOutputStream两类对文件进行操作。具体包括通过相对路径打开文件,三种方法读取文件,查看文件属性,追加文件数据等。

效果图:

完整代码:

package Code.a;
import java.io.*;
public class FileInputStreamDemo {
    

    public static void main(String[] args) {
        //获取当前目录;
        File f = new File(".");
        System.out.print("absolute path:"+f.getAbsolutePath()+"\n");
        while(true)
        {
            try {
                //输入命令;
                System.out.print("Please input your order:");
                BufferedReader stdinBufferedReader;
                String str1 = null;
                stdinBufferedReader = new BufferedReader(new InputStreamReader(System.in));
                str1 = stdinBufferedReader.readLine();
                //相对路径打开文件;
                File file2 = new File(".\\src\\Code\\a\\Exception.java");
                FileInputStream fis2 = new FileInputStream(file2);
                
                根据不同的命令,执行不同操作;
                //一次性读取全部数据
                if(str1.equals("一次性读取全部数据"))
                {
                    byte[] buf = new byte[(int)(file2.length())];
                    fis2.read(buf);
                    String str = new String(buf);
                    System.out.print(str);
                    System.out.print("\n");
                }
                //分块读取
                else if(str1.equals("分块读取"))
                {
                    int n = 1024,count;
                    byte[] buf = new byte[n];
                    while((count = fis2.read(buf)) != -1)
                    {
                        System.out.print(new String(buf,0,count));
                    }
                    System.out.print("\n");
                }
                //逐字读取数据
                else if(str1.equals("逐字读取数据"))
                {
                    for(int i = 0; i < file2.length(); i++)
                    {
                        char ch = (char)(fis2.read());
                        System.out.print(ch);
                    }
                    System.out.print("\n");
                }
                //退出
                else if(str1.equals("退出"))
                {
                    System.out.print("已退出\n");
                    break;
                }
                //查看文件属性
                else if(str1.equals("查看文件属性"))
                {
                    System.out.print("If the file or catalog exists:"+file2.exists()+"\n");
                    System.out.print("If is it a file:"+file2.isFile()+"\n");
                    System.out.print("If is it a catalog:"+file2.isDirectory()+"\n");
                    System.out.print("FileName:"+file2.getName()+"\n");
                    System.out.print("absolute path:"+file2.getAbsolutePath()+"\n");
                    System.out.print("The last time that the file was changed:"+file2.lastModified()+"\n");
                    System.out.print("The size of the file:"+file2.length()+" bites\n");
                }
                //向文件追加数据
                else if(str1.equals("文件追加数据"))
                {
                    FileOutputStream fos2 = new FileOutputStream(file2,true);
                    System.out.println("Please input the content: ");
                    BufferedReader ContentReader;
                    String str2 = null;
                    ContentReader = new BufferedReader(new InputStreamReader(System.in));
                    str2 = ContentReader.readLine();
                    fos2.write(str2.getBytes());
                    fos2.close();
                }
                //关闭流对象;
                fis2.close();
            }
            //处理异常;
            catch(FileNotFoundException fnfe) {
                System.out.print("The file open unsuccessfully.");
            }catch(IOException ioe) {
                ioe.printStackTrace();
            }
        }
    }
    
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • java开发之读写txt文件操作的实现

    项目结构: 运行效果: ======================================================== 下面是代码部分: ======================================================== /Text/src/com/b510/txt/MyFile.java 复制代码 代码如下: package com.b510.txt; import java.io.BufferedReader; import java.io.F

  • java文件操作工具类分享(file文件工具类)

    复制代码 代码如下: import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.Fil

  • java文件操作练习代码 读取某个盘符下的文件

    复制代码 代码如下: import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileReader;import java.io.IOException;import java.io.InputStream;import java.io.Reader; public class IORea

  • Java文件操作之按行读取文件和遍历目录的方法

    按行读取文件 package test; import java.io.*; import java.util.*; public class ReadTest { public static List<String> first_list; public static List<String> second_list; public ReadTest() { first_list = new LinkedList<>(); second_list = new Link

  • Java文件操作工具类fileUtil实例【文件增删改,复制等】

    本文实例讲述了Java文件操作工具类fileUtil.分享给大家供大家参考,具体如下: package com.gcloud.common; import java.io.*; import java.net.MalformedURLException; import java.net.URL; /** * 文件工具类 * Created by charlin on 2017/9/8. */ public class FileUtil { /** * 读取文件内容 * * @param is *

  • java遍历properties文件操作指南

    在java项目开发过程中,使用properties文件作为配置基本上是必不可少的,很多如系统配置信息,文件上传配置信息等等都是以这种方式进行保存. 同时学会操作properties文件也是java基础. 复制代码 代码如下: public class PropertiesUtil { public static Map getFileIO(String fileName){ Properties prop = new Properties(); Map propMap=new HashMap()

  • java中的文件操作总结(干货)

    File类简介 package com.file; import java.io.File; import java.io.IOException; /** * Created by elijahliu on 2017/2/10. */ public class filetest { public static void main(String[] args) { File file = new File("hello.txt"); //是否存在 if (file.exists())

  • java读取文件内容的三种方法代码片断分享(java文件操作)

    复制代码 代码如下: try {           // 方法一           BufferedReader br = new BufferedReader(new FileReader(new File(                   "D:\\1.xls")));           // StringBuilder bd = new StringBuilder();           StringBuffer bd = new StringBuffer();   

  • java文件操作之Path,Paths,Files

    Java7中文件IO发生了很大的变化,专门引入了很多新的类: import java.nio.file.DirectoryStream; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.attribute.

  • Java最全文件操作实例汇总

    本文实例汇总了Java文件操作.分享给大家供大家参考,具体如下: 1.创建文件夹 //import java.io.*; File myFolderPath = new File(%%1); try { if (!myFolderPath.exists()) { myFolderPath.mkdir(); } } catch (Exception e) { System.out.println("新建目录操作出错"); e.printStackTrace(); } 2.创建文件 //i

随机推荐