从webview android重命名下载

时间:2012-03-31 11:08:01

标签: android webview download 7digital

我在7digital商店使用webview,允许我的用户在他们的设备上购买和下载mp3。

但现在当我从7digital下载一首歌时,这首歌将被称为-3.bin,-4.bin,-5.bin等。

如何将此名称覆盖为他们正在下载的歌曲的名称?

这是我的代码:

wv.setDownloadListener(new DownloadListener() {
        public void onDownloadStart(String url, String userAgent,
                String contentDisposition, String mimetype,
                long contentLength) {





           Intent intent = new Intent(Intent.ACTION_VIEW);
           intent.setData(Uri.parse(url));
           startActivity(intent);

        }
    });

1 个答案:

答案 0 :(得分:0)

new file(“oldPath”)。renameTo(new File(“newPath”));

最好的问候。