“Descargar archivo de URL” Código de respuesta

Descargar archivo de cualquier 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

Descargar archivo 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

Respuestas similares a “Descargar archivo de URL”

Preguntas similares a “Descargar archivo de URL”

Más respuestas relacionadas con “Descargar archivo de URL” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código