溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java實(shí)現(xiàn)文件讀取和寫入過程解析

發(fā)布時間:2020-10-25 18:58:32 來源:腳本之家 閱讀:127 作者:小龍_T無限 欄目:編程語言

需求說明

Java實(shí)現(xiàn)文件讀取和寫入過程解析

實(shí)際操作過程中,從D盤根目錄下的ak.txt讀取文件寫入D盤根目錄下的hello.txt文件內(nèi)

實(shí)現(xiàn)思路

寫兩個方法,一個用于讀取目標(biāo)文件,一個用于寫入目標(biāo)文件--詳情見代碼注釋

代碼內(nèi)容

文件讀取和寫入練習(xí)

package com.io;

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

/**
 * @auther::9527
 * @Description: 嘗試
 * @program: shi_yong
 * @create: 2019-07-31 17:11
 */
public class Tyy {
  public static void main(String[] args) {
    //實(shí)例化對象
   Tyy tyy = new Tyy();
   //用一個byte[]接受數(shù)據(jù)
   byte[] bytes=tyy.read("d:/ak.txt");
   //將接受到的數(shù)據(jù)傳入寫入方法
   tyy.write("d:/hello.txt",bytes);

  }

  //讀取方法,設(shè)定傳參是文件的String路徑,返回一個byte[]數(shù)組
  public byte[] read(String str) {
    byte[] bytes = new byte[0];
    FileInputStream fis = null;
    try {
      fis = new FileInputStream(str);
      int read;
      bytes = new byte[1024000];
      System.out.println("內(nèi)容讀取中...........");
      while ((read = fis.read(bytes)) != -1) {
        for (int i = 0; i < read; i++) {
          System.out.print((char) bytes[i]);
        }
        System.out.println("\n內(nèi)容讀取完畢");
      }
      return bytes;
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      try {
        fis.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
    return bytes;
  }

  //寫入方法,需要兩個參數(shù),一是寫入路徑,一是寫入內(nèi)容
  public void write(String string,byte[] bytes) {
    System.out.println("文件寫入中-----");
    FileOutputStream fos = null;

    try {
      fos = new FileOutputStream(string);
      try {
        fos.write(bytes);
      } catch (IOException e) {
        e.printStackTrace();
      }
      System.out.println("文件寫入完畢");

    } catch (FileNotFoundException e) {
      e.printStackTrace();
    }finally {
      try {
        fos.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
    }
  }
}

運(yùn)行結(jié)果

Java實(shí)現(xiàn)文件讀取和寫入過程解析

Java實(shí)現(xiàn)文件讀取和寫入過程解析

Java實(shí)現(xiàn)文件讀取和寫入過程解析

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI