“Загрузить файл с URL” Ответ

Загрузить файл с любого URL -адреса

function download(url, filename) {
fetch(url).then(function(t) {
    return t.blob().then((b)=>{
        var a = document.createElement("a");
        a.href = URL.createObjectURL(b);
        a.setAttribute("download", filename);
        a.click();
    }
    );
});
}

download("https://get.geojs.io/v1/ip/geo.json","geoip.json")
download("data:text/html,HelloWorld!", "helloWorld.txt");
UKPatel

Загрузить файл с URL

//
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
                Uri uri = Uri.parse("https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf");
                DownloadManager.Request request = new DownloadManager.Request(uri);
                request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE);
                long reference = manager.enqueue(request);
Mohamed Boumlyk

Ответы похожие на “Загрузить файл с URL”

Вопросы похожие на “Загрузить файл с URL”

Больше похожих ответов на “Загрузить файл с URL” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования