Audio does not play in Jar but does in eclipse

前端 未结 4 1974
眼角桃花
眼角桃花 2021-01-27 08:36

Sound does not play when I run the JAR, but it does when I run it in eclipse.

Here is where I load the clips:

public void init(){
    System.out.println         


        
4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-27 09:30

    File systems have a hard time looking into jars. Try using URL instead. A URL can locate a location within a jar. This happens a lot with folks trying to access resources in jars for the first time. Otherwise things look fine.

提交回复
热议问题