Why does getResource return null

后端 未结 5 1657
感情败类
感情败类 2021-01-05 23:22

I\'m trying to access a file in my project. But getResource method returns null.

This is how my project looks like:

相关标签:
5条回答
  • 2021-01-05 23:39

    Try using / prefixing.

    Thread.currentThread().getContextClassLoader().getResourceAsStream("/xxx.png")

    0 讨论(0)
  • 2021-01-05 23:46

    Is there a reason you're using the the class loader of the current class? Something like this.getClass().getClassLoader().getResource("/xxx.png") should be more reliable.

    0 讨论(0)
  • 2021-01-05 23:46

    Use the following code, it should work.

    YOUR_CLASS_HERE.class.getClass().getResource( "/xxx.png" );

    e.g. Signin.class.getClass().getResource( "/xxx.png" );

    0 讨论(0)
  • 2021-01-06 00:02

    Either Approach will work. its just Filepath issue.

    • Your Jar Structure shows no "asset" Folder
      xxx.png file is directly in Jar File.

    Try to remove "assets" from below line of code.

    Thread.currentThread().getContextClassLoader().getResource("assets/xxx.png"); //returns null
    
    • Also, if you want to use "assets" folder in ur classpath, please ensure that your jar contains "assets" folder.
    0 讨论(0)
  • 2021-01-06 00:06

    There are lot of ways to add a resource to the jar file, you can put it in src, add as a resource if you use maven, ant etc... If you able to bundle whole directory then you should be able to use your original piece of code. With the current structure you can use following piece of code.

    Thread.currentThread().getContextClassLoader().getResource("/xxx.png"). 
    
    0 讨论(0)
提交回复
热议问题