sound not playing in jar

前端 未结 5 1101
天命终不由人
天命终不由人 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:54

    Create a package named resources as shown below enter image description here

    then

     AudioSystem.getAudioInputStream(kidsClassRoom.class.getResourceAsStream("resources/"+file));
    

提交回复
热议问题