“Baixe o arquivo de URL” Respostas de código

Baixe o arquivo de qualquer 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

Baixe o arquivo de 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

Respostas semelhantes a “Baixe o arquivo de URL”

Perguntas semelhantes a “Baixe o arquivo de URL”

Mais respostas relacionadas para “Baixe o arquivo de URL” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código