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

What is ITIL? ITIL is a set of detailed practices for IT service management (ITSM) that focuses on aligning IT services with the needs of business. ITIL was formed as an acronym for Information Technology Infrastructure Library, but it no…

How to learn Microsoft Power BI

This post provides resources to learn Power BI. Power BI Learning Resources Learning resources for Power BI featured on this post: Microsoft Power BI Guided Learning Microsoft Power BI Guided Learning Documentation in Microsoft documentation portal to learn Power BI…