Download a pdf file using Android
Résolu/Fermé
Hichamisto
Messages postés
52
Date d'inscription
jeudi 26 juin 2014
Statut
Membre
Dernière intervention
4 juillet 2017
-
Modifié par Hichamisto le 13/07/2014 à 19:58
Hichamisto Messages postés 52 Date d'inscription jeudi 26 juin 2014 Statut Membre Dernière intervention 4 juillet 2017 - 16 juil. 2014 à 13:59
Hichamisto Messages postés 52 Date d'inscription jeudi 26 juin 2014 Statut Membre Dernière intervention 4 juillet 2017 - 16 juil. 2014 à 13:59
A voir également:
- Download a pdf file using Android
- Lire le coran en français pdf - Télécharger - Histoire & Religion
- Jouer a pokemon sur android - Guide
- Android recovery - Guide
- Host file - Guide
- Comment faire un pdf - Guide
4 réponses
christianbale
Messages postés
1
Date d'inscription
dimanche 13 juillet 2014
Statut
Membre
Dernière intervention
13 juillet 2014
13 juil. 2014 à 20:08
13 juil. 2014 à 20:08
You can easiliy copy pdf file from your pc to an android device using USB and use this app > http://updatedinfo.org/ezpdf-reader-multimedia-pdf-v2-5-5-0-apk/ to read the pdf file...
Hichamisto
Messages postés
52
Date d'inscription
jeudi 26 juin 2014
Statut
Membre
Dernière intervention
4 juillet 2017
3
13 juil. 2014 à 20:16
13 juil. 2014 à 20:16
thank you for your response Chirstianbale ,
but i think you misunderstood me. i want to programme with a Android language how to download a PDF file from the internet or my server fo example
but i think you misunderstood me. i want to programme with a Android language how to download a PDF file from the internet or my server fo example
Hichamisto
Messages postés
52
Date d'inscription
jeudi 26 juin 2014
Statut
Membre
Dernière intervention
4 juillet 2017
3
16 juil. 2014 à 13:56
16 juil. 2014 à 13:56
j'ai oublié de partager avec vous la solution que j'ai trouvé
elle marche bien :
telecharger un fichier à partir d'un Android
public void Download (){
String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
File folder = new File(extStorageDirectory, "PDF");
folder.mkdir();
File file = new File(folder, "nomFichier.pdf");
try {
file.createNewFile();
} catch (IOException e1) {
e1.printStackTrace();
}
Downloader.DownloadFile("http://adresse fichier/fichier.pdf", file);
Toast.makeText(this, "download finished", Toast.LENGTH_SHORT).show();
}
elle marche bien :
telecharger un fichier à partir d'un Android
public void Download (){
String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
File folder = new File(extStorageDirectory, "PDF");
folder.mkdir();
File file = new File(folder, "nomFichier.pdf");
try {
file.createNewFile();
} catch (IOException e1) {
e1.printStackTrace();
}
Downloader.DownloadFile("http://adresse fichier/fichier.pdf", file);
Toast.makeText(this, "download finished", Toast.LENGTH_SHORT).show();
}
Hichamisto
Messages postés
52
Date d'inscription
jeudi 26 juin 2014
Statut
Membre
Dernière intervention
4 juillet 2017
3
16 juil. 2014 à 13:59
16 juil. 2014 à 13:59
et pour télécharger un fichier à partir d'un client Java ou J2EE c'est pareil
try{
URL url = new URL("http://adresse fichier/fichier.pdf");
InputStream in = url.openStream();
FileOutputStream fos=null;
File doc = new File("c:/Rapports");
if(!doc.exists())
doc.mkdir();
fos = new FileOutputStream(new File("c:/newFile.pdf"));
int length = -1;
byte[] buffer = new byte[1024];
while ((length = in.read(buffer)) > -1) {
fos.write(buffer, 0, length);
}
fos.close();
in.close();
}
catch (Exception e) {
e.printStackTrace();
}
try{
URL url = new URL("http://adresse fichier/fichier.pdf");
InputStream in = url.openStream();
FileOutputStream fos=null;
File doc = new File("c:/Rapports");
if(!doc.exists())
doc.mkdir();
fos = new FileOutputStream(new File("c:/newFile.pdf"));
int length = -1;
byte[] buffer = new byte[1024];
while ((length = in.read(buffer)) > -1) {
fos.write(buffer, 0, length);
}
fos.close();
in.close();
}
catch (Exception e) {
e.printStackTrace();
}