Java 函式庫中常用的輸入輸出工具包括:檔案 I/O:處理檔案讀取和寫入。控制台 I/O:從控制台讀取輸入或輸出資料到其。網路 I/O:建立網路連線並與其他電腦通訊。
Java 函式庫中的常用輸入輸出工具
Java 標準函式庫中提供了許多用於處理輸入輸出(I /O)的工具,以下是一些最常用且有用的工具:
檔案I/O
控制台I/O
網路I/O
#實戰案例:從檔案中讀取資料
import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; public class FileInputExample { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new FileReader("data.txt"))) { String line; while ((line = br.readLine()) != null) { System.out.println(line); } } catch (IOException e) { e.printStackTrace(); } } }
#實戰案例:寫入資料到文件
import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; public class FileOutputExample { public static void main(String[] args) { try (BufferedWriter bw = new BufferedWriter(new FileWriter("output.txt"))) { bw.write("Hello world!"); } catch (IOException e) { e.printStackTrace(); } } }
以上是Java 函數庫中都有哪些常用輸入輸出工具?的詳細內容。更多資訊請關注PHP中文網其他相關文章!