sound not playing in jar

前端 未结 5 1092
天命终不由人
天命终不由人 2020-12-22 12:37

I have packed all the class files and resources as a jar but on execution the sound files wont play. My package structure is:

+project
|_classes
|_ _*.class
         


        
5条回答
  •  温柔的废话
    2020-12-22 12:56

    When you do getResourceAsStream, it is not relative to the current class, but the root of the archive. That is, first try to remove ../.

提交回复
热议问题