0
version.properties位於文件夾的根目錄中。我正在閱讀gradle中的這個文件。現在我想從活動中讀取相同的內容。我如何閱讀這個文件。讀取位於根文件夾中的version.properties文件
我在下面的代碼獲取文件沒有源泉例外:
File file = new File("/module/version.properties");
FileInputStream fis;
String content = "";
try {
fis = openFileInput(file);
} catch (IOException e) {
e.printStackTrace();
}