SCJP題庫第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.

Ans:

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

Comments

Popular posts from this blog

Android-使用webview在V3版的Google地圖GPS定位