JAVA學習記錄 檔案讀取

2021-07-24 11:12:31 字數 885 閱讀 4522

1、按位元組讀取檔案內容,可以一次讀取乙個位元組的內容,也可以一次讀取多個位元組的內容,需要定義乙個陣列用來儲存。

1)、一次讀取乙個位元組並列印到螢幕,每行列印10位元組,轉換為16進製制:

public static void readfilebybyte() throws exception

}

2)、一次讀取多個位元組

public static void readfilebybytes() throws exception

system.out.println();

} is.close();

}

2、按照行進行讀取,可以使用bufferedreader(inputstreamreader(fileinputstream))進行讀取,也可以使用bufferedreader(filereader)進行讀取

1)、使用bufferedreader(inputstreamreader(fileinputstream))進行讀取

public static void readfilebyline1()

fis.close();

isr.close();

br.close();

} catch (ioexception e)

}

2)、使用bufferedreader(filereader)進行讀取

public static void readfilebyline2()

fr.close();

br.close();

} catch (ioexception e)

}

Java讀取檔案

專案開發的時候經常會遇到有讀取檔案的情況,下面簡單描述直接上 讀取某個資料夾下的所有檔案 filepath 資料夾路徑 public static boolean readfile string filepath throws filenotfoundexception,ioexception el...

java 讀取property檔案

public static string getlabel string status catch ioexception e string statuskey status status string label null try catch unsupportedencodingexceptio...

Java讀取ini檔案

ini檔案如下所示 module 0 key num 2 redis key mon login redis node 192.168.144.119 6379 192.168.144.120 6379 polling 1 module 1 key num 2 redis key mon regis...