SCJP 1.6版考題 149

出自 陳富國維基館
前往: 導覽搜尋
Place the Fragments into the program, 
so that the program will get lines from a text file. display them, and then close all the resources.

SCJP149-1 2.png

解答


Ans:
SCJP149-2 2.jpg

解說:

在Java中開檔的方式是先用File類別新增一個File物件(檔名)
再用FileReader類別新增一個對File物件的讀取物件
BufferedReader類別提供一個緩衝式的檔案讀取方式…
緩衝區的意思是會在檔案實際裝置與CPU之間配置一個速度介於二者之間的記憶體做為存取緩衝
因此最後要進行close,以便將還在記憶體中的資料安全地寫入檔案實際的位置。