getResourceAsStream() doesn't see resource

前端 未结 2 1104
既然无缘
既然无缘 2021-01-22 12:50

I want to unpack resources from my jar file. The structure of jar looks like this:

my.jar
    META-INF
    resources
        my.exe
        my.dll
    my
                


        
2条回答
  •  伪装坚强ぢ
    2021-01-22 13:07

    Delete the leading slash, getResourceAsStream will use the absolute path if the first character is a slash.

提交回复
热议问题