Android 使用DownloadManager下载HTTP/HTTPS URI

Android 使用DownloadManager下载HTTP/HTTPS URI,android,https,Android,Https,我在谷歌上搜索并找到了一些关于这个的信息。但那没用 Android版本:4.0+ 这是我的密码: DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); 我的网址是 Scheme是https,但我仍然得到一个错误: 02-10 11:18:23.710 E/AndroidRuntime( 7550): java.lang.RuntimeException: Unable to start se

我在谷歌上搜索并找到了一些关于这个的信息。但那没用

Android版本:4.0+
这是我的密码:

DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
我的网址是

Scheme是https,但我仍然得到一个错误:

02-10 11:18:23.710 E/AndroidRuntime( 7550): java.lang.RuntimeException: Unable to start service com.souyidai.investment.android.service.DownloadService@4344e5e0 with Intent { act=download_with_download_manager cmp=com.souyidai.investment.android/.service.DownloadService (has extras) }: java.lang.IllegalArgumentException: Can only download HTTP/HTTPS URIs:  https://static.test.com/downloads/xxx.apk
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2711)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.app.ActivityThread.access$2100(ActivityThread.java:141)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1299)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.os.Handler.dispatchMessage(Handler.java:102)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.os.Looper.loop(Looper.java:136)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.app.ActivityThread.main(ActivityThread.java:5047)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at java.lang.reflect.Method.invokeNative(Native Method)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at java.lang.reflect.Method.invoke(Method.java:515)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:806)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:622)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at dalvik.system.NativeStart.main(Native Method)
02-10 11:18:23.710 E/AndroidRuntime( 7550): Caused by: java.lang.IllegalArgumentException: Can only download HTTP/HTTPS URIs:  https://static.test.com/downloads/xxx.apk
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at android.app.DownloadManager$Request.<init>(DownloadManager.java:642)
02-10 11:18:23.710 E/AndroidRuntime( 7550):     at com.souyidai.investment.android.service.DownloadService.onStartCommand(DownloadService.java:114)

有什么想法吗?

我也有同样的问题。出于某种原因,我的url在“https”之前有一种空白。在url字符串上使用
trim()

addAndroidDownloads: {
          mediaScannable: true, // these two lines resolve the crash on first download
          mime: 'image/*', // define mime type also

我们也有同样的问题。@EIYeante在星系S4上也有同样的问题,但是trim()没有解决问题。。。请帮忙
addAndroidDownloads: {
          mediaScannable: true, // these two lines resolve the crash on first download
          mime: 'image/*', // define mime type also