使用 Gson 從磁碟載入 JSON 檔案

這將從磁碟載入 JSON 檔案並將其轉換為給定的型別。

public static <T> T getFile(String fileName, Class<T> type) throws FileNotFoundException {
    Gson gson = new GsonBuilder()
            .create();
    FileReader json = new FileReader(fileName);
    return gson.fromJson(json, type);
}