Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. Exception in thread "main" java.lang.NoClassDefFoundError: javafx/application/Application
  2.  
  3. AudioUtil.Song(System.getProperty("user.home") + "/data/music/test.mp3");
  4. AudioUtil.Play();
  5. frame = new JFrame(title);
  6. frame.setSize(width, height);
  7. frame.setBackground(Color.BLACK);
  8. frame.setLocationRelativeTo(null);
  9. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  10. frame.setVisible(true);
  11. frame.add(this, BorderLayout.CENTER);
  12.  
  13. public class AudioUtil extends Application {
  14.  
  15. private static JFXPanel fxPanel;
  16. private static Media media;
  17. private static MediaPlayer mediaPlayer;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement