我有以下的屬性文件相對路徑發佈的Eclipse
fileLocation = C:\用戶\桌面\ SomeFolder tickerNames = C:\用戶\桌面\ SomeFile.txt
我訪問像
Properties configProp = new Properties();
String propertyValue = null;
try {
InputStream in = PropertyGet.class.getResourceAsStream("/application.properties");
configProp.load(in);
propertyValue = configProp.getProperty(propertyName);
無論我嘗試什麼,當我創建一個可運行jar文件它只是不會拿起文件的位置。我如何構建文件以便我的可運行jar可以找到它們?
感謝
fileLocation屬性與傳遞給getResourceAsStream()的String有什麼關係? –