Mixing Audio Files in Java
问题 I am creating this program in Java that import X number of Audio files and mix them in 1 audio file. Example: Import: "Audio1.wav", "Audio2.wav". Mix them. Export: "Result.wav" Until now i have the import and export methods, my problem is mixing the files into 1 file. Edit: Some pice of code. private static File openDialog(){ JFileChooser open = new JFileChooser(); int returnVal = open.showOpenDialog(open); if (returnVal == JFileChooser.APPROVE_OPTION){ return open.getSelectedFile(); } return