How to get a path to a resource in a Java JAR file

前端 未结 16 2387
时光说笑
时光说笑 2020-11-22 09:23

I am trying to get a path to a Resource but I have had no luck.

This works (both in IDE and with the JAR) but this way I can\'t get a path to a file, only the file

16条回答
  •  一向
    一向 (楼主)
    2020-11-22 10:01

    A File is an abstraction for a file in a filesystem, and the filesystems don't know anything about what are the contents of a JAR.

    Try with an URI, I think there's a jar:// protocol that might be useful for your purpouses.

提交回复
热议问题