How to use Java to download a mp3 file online?

后端 未结 3 824
时光说笑
时光说笑 2021-02-06 12:11

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.FileNotFou

3条回答
  •  深忆病人
    2021-02-06 13:04

    When you create a FileInputStream, you always access your local filesystem. Instead, you should use a URLConnection for accessing files over HTTP.

    The indicator for this is that the forward slashes / have turned into backward slashes \.

提交回复
热议问题