Pablo Gallardo

Pablo Gallardo

Cybersecurity and IT professional. Find more info at pmgallardo.com

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…

CISA Resources

CISA (Certified Information Systems Auditor) is a certification owned by ISACA.   Code of Professional Ethics   Standards   Guidelines

ITIL Certifications

ITIL has certifications for professionals, but not for organiations. Organizatios can be certified in service management through ISO 20000. What is ITIL? You can read this post about ITIL. Certifications under ITIL There are different certifications offered within the ITIL…