所以我有2個文件在同一個文件夾。 「example.csv」和「example.jpg」,但是當我運行這段代碼時,我得到example.jpg的路徑,但是加載example.csv會拋出一個Nullpointer。加載CSV文件拋出NullPointerException
System.out.println(this.getClass().getResource("/example.csv").getFile());
System.out.println(this.getClass().getResource("/example.jpg").getFile());
THX對於任何幫助
堆棧跟蹤的確切錯誤是什麼?你有沒有做過任何調試? – Carcigenicate
你確定前面的'/'是文件名嗎? – SHG
重複的https://stackoverflow.com/questions/2593154/get-a-resource-using-getresource或https://stackoverflow.com/questions/2343187/loading-resources-using-getclass-getresource/41781868#41781868 – geneSummons