Tag dev

Play sound clip from local file in Java

This solution works only for .wav files. Source code: public void playSound() { try { AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(“”).getAbsoluteFile()); Clip clip = AudioSystem.getClip(); clip.open(audioInputStream); clip.start(); } catch(Exception ex) { System.out.println(“Error with playing sound.”); ex.printStackTrace(); } } External References “Playing…

DevOps

DevOps, from development operations, is a cultural and organizational movement that emphasizes collaboration and integration between software developers (Dev) and IT operations (Ops) teams. DevOps uses a set of practices and tools to integrate the work of dev and ops…

Cross-platform Programming Toolkits

This post features software to create widget toolkits for creating graphical user interface (GUI). List of cross-platform Widget Toolkits Widget toolkits featured on this post: GTK+ GTK, formerly GTK+, evolves from the GIMP Toolkit (GTK), that was the user interface…