我用下面的方法來下載一個MP3文件在: http://online1.tingclass.com/lesson/shi0529/43/32.mp3如何使用Java在線下載mp3文件?
但我得到了以下錯誤:
java.io.FileNotFoundException:HTTP:\ online1.tingclass.com \教訓\ shi0529 \ 43 \ 32.mp3(文件名,目錄名或卷標語法不正確)
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).getChannel();
sourceChannel.transferTo(0,sourceChannel.size(),destinationChannel);
// or
// destinationChannel.transferFrom(sourceChannel, 0, sourceChannel.size());
sourceChannel.close();
destinationChannel.close();
}
catch (Exception e) { e.printStackTrace(); }
}
然而,如果我從手工瀏覽器做到這一點,該文件是存在的,我不知道爲什麼它不工作,什麼是正確的做法?
弗蘭克