I get an exception using java on android (java.lang.NoClassDefFoundError), why?

后端 未结 3 1002
自闭症患者
自闭症患者 2021-01-28 06:02

This is the line I run:

AudioInputStream clip1 = AudioSystem.getAudioInputStream(new File(wavFile1));

This is the exception I get (From LogCat)

3条回答
  •  有刺的猬
    2021-01-28 06:55

    It clearly means class AudioSystem is not present in your project. May be you were referencing some libraries which may be missing now.

提交回复
热议问题