How to use Java to download a mp3 file online?
问题 I used the following method to download an mp3 file at : http://online1.tingclass.com/lesson/shi0529/43/32.mp3 But I got the following error : java.io.FileNotFoundException: http:\online1.tingclass.com\lesson\shi0529\43\32.mp3 (The filename, directory name, or volume label syntax is incorrect) public static void Copy_File(String From_File,String To_File) { try { FileChannel sourceChannel=new FileInputStream(From_File).getChannel(); FileChannel destinationChannel=new FileOutputStream(To_File)