A voir également:
- Classe java pour ouvrir un fichier texte
- Comment ouvrir un fichier epub ? - Guide
- Ouvrir fichier .bin - Guide
- Comment ouvrir un fichier docx ? - Guide
- Ouvrir un fichier .dat - Guide
- Fichier rar - Guide
5 réponses
slimIBM
Messages postés
6
Date d'inscription
samedi 26 décembre 2009
Statut
Membre
Dernière intervention
27 décembre 2009
26 déc. 2009 à 13:57
26 déc. 2009 à 13:57
package java.io
tu peux voir
ici
http://www.liafa.jussieu.fr/~yunes/Java/es/
ou ici
https://anisfrikha.developpez.com/tutoriel/java-io/
tu peux voir
ici
http://www.liafa.jussieu.fr/~yunes/Java/es/
ou ici
https://anisfrikha.developpez.com/tutoriel/java-io/
merci slim mais le code devrait me permettre d'ouvrir un fichier à partir d'un répertoire non pas d'afficher son continu par exemple en lui indiquant c:\fichier.txt le fichier texte fichier.txt s'ouvre
chuka
Messages postés
965
Date d'inscription
samedi 11 octobre 2008
Statut
Membre
Dernière intervention
29 juillet 2010
378
26 déc. 2009 à 14:29
26 déc. 2009 à 14:29
tu peux essayer cela
Process p = Runtime.getRuntime().exec("notepad.exe c:\\temp\\test.txt");//mon fichier s'appelle test.txt
@+
Process p = Runtime.getRuntime().exec("notepad.exe c:\\temp\\test.txt");//mon fichier s'appelle test.txt
@+
chuka
Messages postés
965
Date d'inscription
samedi 11 octobre 2008
Statut
Membre
Dernière intervention
29 juillet 2010
378
26 déc. 2009 à 15:09
26 déc. 2009 à 15:09
salut,
import java.io.IOException;
public class Main {
public static void main(String[]args) throws IOException{
Ouvrir ov=new Ouvrir("notepad.exe","c:\\temp\\test.txt");
ov.launchExe();
}
}
class Ouvrir
{
String path;
String Exe;
public Ouvrir(String Exe,String Path)
{
this.path=Path;
this.Exe=Exe;
}
public void launchExe() throws IOException
{
Runtime.getRuntime().exec(Exe+" "+path);
}
}
J'espere ca pourra t'aider!!
@+
import java.io.IOException;
public class Main {
public static void main(String[]args) throws IOException{
Ouvrir ov=new Ouvrir("notepad.exe","c:\\temp\\test.txt");
ov.launchExe();
}
}
class Ouvrir
{
String path;
String Exe;
public Ouvrir(String Exe,String Path)
{
this.path=Path;
this.Exe=Exe;
}
public void launchExe() throws IOException
{
Runtime.getRuntime().exec(Exe+" "+path);
}
}
J'espere ca pourra t'aider!!
@+
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question