Java(Android) IOException: Authority expected at index 7: http://

后端 未结 1 1061
野趣味
野趣味 2021-01-07 10:56

I am trying to make this function download file from the internet. I pass two arguments to it: from - url to file on the net, to - local file path; The problem it throws

相关标签:
1条回答
  • 2021-01-07 11:25

    Try to encode your url with the use of URLEncoder, in the UTF-8 format.

    Sample code:

    String encodedUrl = URLEncoder.encode(url.toString(), "UTF-8"); 
    
    0 讨论(0)
提交回复
热议问题