How to avoid getting URL encoded paths from URL.getFile()?

前端 未结 2 532
故里飘歌
故里飘歌 2021-01-17 20:22

I\'m having the following problem when trying to get the path of a given resource:

    System.out.println(\"nf=\"+new File(\".\").getAbsolutePath());      
          


        
2条回答
  •  花落未央
    2021-01-17 20:51

    I'm adding Mr_Thorynque comment as an answer as it also works and at least for me seems to be simpler.

    this.getClass().getResource(".").toURI().getPath()
    

提交回复
热议问题