ファイルディレクトリの読み取り、書き込み、削除の Java 実装の詳細な紹介

黄舟
リリース: 2017-09-15 10:07:03
オリジナル
1474 人が閲覧しました

この記事では、主に Java ファイルの読み取り、書き込み、削除操作の詳細な実装コードを紹介します。必要な方は参考にしてください。 1. コンソール ユーザーが入力した情報を取得します。

public String getInputMessage() throws IOException...{
         System.out.println("请输入您的命令∶");
         byte buffer[]=new byte[1024];
         int count=System.in.read(buffer);
         char[] ch=new char[count-2];//最后两位为结束符,删去不要
         for(int i=0;i<count-2;i++)
             ch[i]=(char)buffer[i];
         String str=new String(ch);
         return str;
     }
ログイン後にコピー

は、唯一の欠点は、中国語入力をサポートしていないことであり、さらなる改善が必要です。

2. ファイルをコピーします

1. ファイルストリーム内のファイルをコピーします

 public void copyFile(String src,String dest) throws IOException...{
         FileInputStream in=new FileInputStream(src);
         File file=new File(dest);
         if(!file.exists())
             file.createNewFile();
         FileOutputStream out=new FileOutputStream(file);
         int c;
         byte buffer[]=new byte[1024];
         while((c=in.read(buffer))!=-1)...{
             for(int i=0;i<c;i++)
                 out.write(buffer[i]);        
         }
         in.close();
         out.close();
     }
ログイン後にコピー

このメソッドはテスト済みで、中国語処理をサポートしており、txt、xml、jpg、doc、など。 複数の形式

3. ファイルを書き込む

1. PrintStream を使用してファイルを書き込む

public void PrintStreamDemo()...{
         try ...{
             FileOutputStream out=new FileOutputStream("D:/test.txt");
             PrintStream p=new PrintStream(out);
             for(int i=0;i<10;i++)
                 p.println("This is "+i+" line");
         } catch (FileNotFoundException e) ...{
             e.printStackTrace();
         }
     }
ログイン後にコピー

2. StringBuffer を使用してファイルを書き込む

public void StringBufferDemo() throws IOException......{
         File file=new File("/root/sms.log");
         if(!file.exists())
             file.createNewFile();
         FileOutputStream out=new FileOutputStream(file,true);        
         for(int i=0;i<10000;i++)......{
             StringBuffer sb=new StringBuffer();
             sb.append("这是第"+i+"行:前面介绍的各种方法都不关用,为什么总是奇怪的问题 ");
             out.write(sb.toString().getBytes("utf-8"));
         }        
         out.close();
     }
ログイン後にコピー

このメソッドは、使用するエンコーディングを効果的に設定できます。中国語の問題を解決します。

4. ファイルの名前変更

public void renameFile(String path,String oldname,String newname)...{
         if(!oldname.equals(newname))...{//新的文件名和以前文件名不同时,才有必要进行重命名
             File oldfile=new File(path+"/"+oldname);
             File newfile=new File(path+"/"+newname);
             if(newfile.exists())//若在该目录下已经有一个文件和新文件名相同,则不允许重命名
                 System.out.println(newname+"已经存在!");
             else...{
                 oldfile.renameTo(newfile);
             }
         }         
     }
ログイン後にコピー


5. ファイルディレクトリの転送は、ファイルをコピーすることと同じではありません。ファイル ディレクトリの転送 転送後、ファイルは新しいディレクトリにのみ存在します。

public void changeDirectory(String filename,String oldpath,String newpath,boolean cover)...{
         if(!oldpath.equals(newpath))...{
             File oldfile=new File(oldpath+"/"+filename);
             File newfile=new File(newpath+"/"+filename);
             if(newfile.exists())...{//若在待转移目录下,已经存在待转移文件
                 if(cover)//覆盖
                     oldfile.renameTo(newfile);
                 else
                     System.out.println("在新目录下已经存在:"+filename);
             }
             else...{
                 oldfile.renameTo(newfile);
             }
         }       
     }
ログイン後にコピー

6. ファイルの読み取り


1. FileInputStream を使用してファイルを読み取ります

public String FileInputStreamDemo(String path) throws IOException...{
         File file=new File(path);
         if(!file.exists()||file.isDirectory())
             throw new FileNotFoundException();
         FileInputStream fis=new FileInputStream(file);
         byte[] buf = new byte[1024];
         StringBuffer sb=new StringBuffer();
         while((fis.read(buf))!=-1)...{
             sb.append(new String(buf));    
             buf=new byte[1024];//重新生成,避免和上次读取的数据重复
         }
         return sb.toString();
     }
ログイン後にコピー

2. BufferedReader を使用して読み取ります

IO 操作では、BufferedReader と BufferedWriter を使用する方が効率的です


public String BufferedReaderDemo(String path) throws IOException...{
         File file=new File(path);
         if(!file.exists()||file.isDirectory())
             throw new FileNotFoundException();
         BufferedReader br=new BufferedReader(new FileReader(file));
         String temp=null;
         StringBuffer sb=new StringBuffer();
         temp=br.readLine();
         while(temp!=null)...{
             sb.append(temp+" ");
             temp=br.readLine();
         }
         return sb.toString();
     }
ログイン後にコピー

3. dom4j を使用して XML ファイルを読み込みます

public Document readXml(String path) throws DocumentException, IOException...{
         File file=new File(path);
         BufferedReader bufferedreader = new BufferedReader(new FileReader(file));
         SAXReader saxreader = new SAXReader();
         Document document = (Document)saxreader.read(bufferedreader);
         bufferedreader.close();
         return document;
     }
ログイン後にコピー

7. ファイル (フォルダー) を作成します

1. 新しいファイルを作成します

りー

8. ファイル (ディレクトリ) を削除します

1. ファイルを削除します

public void createDir(String path)...{
         File dir=new File(path);
         if(!dir.exists())
             dir.mkdir();
     }
ログイン後にコピー

2. ディレクトリを削除します

File クラスの delete() メソッドを使用してディレクトリを削除する場合は、次のことを確認する必要がありますディレクトリ内にファイルやサブタイトルが存在しない場合、削除は失敗します。したがって、実際のアプリケーションでは、ディレクトリを削除する場合は、再帰を使用してディレクトリ内のすべてのサブディレクトリとファイルを削除する必要があります。ディレクトリ。

りー

以上がファイルディレクトリの読み取り、書き込み、削除の Java 実装の詳細な紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!