Programmation, programme ouvre régulièrement
Résolu/Fermé
guibbor
Messages postés
213
Date d'inscription
lundi 2 août 2010
Statut
Membre
Dernière intervention
14 avril 2021
-
15 déc. 2012 à 17:35
guibbor Messages postés 213 Date d'inscription lundi 2 août 2010 Statut Membre Dernière intervention 14 avril 2021 - 25 févr. 2014 à 19:12
guibbor Messages postés 213 Date d'inscription lundi 2 août 2010 Statut Membre Dernière intervention 14 avril 2021 - 25 févr. 2014 à 19:12
A voir également:
- Programmation, programme ouvre régulièrement
- Programme demarrage windows 10 - Guide
- Application de programmation - Guide
- Désinstaller programme windows 10 - Guide
- Cette action ne peut pas être réalisée car le fichier est ouvert dans un autre programme - Guide
- Forcer la fermeture d'un programme - Guide
3 réponses
guibbor
Messages postés
213
Date d'inscription
lundi 2 août 2010
Statut
Membre
Dernière intervention
14 avril 2021
19
27 déc. 2012 à 12:36
27 déc. 2012 à 12:36
Up !
KX
Messages postés
16752
Date d'inscription
samedi 31 mai 2008
Statut
Modérateur
Dernière intervention
31 août 2024
3 019
27 déc. 2012 à 13:11
27 déc. 2012 à 13:11
Je pense que la plupart des langages doivent pouvoir faire ça.
Exemple en Java :
Exemple en Java :
public class Test { public static void main(String[] args) throws Exception { // the Desktop instance of the current browser context java.awt.Desktop desktop = java.awt.Desktop.getDesktop(); // the file to be opened with the associated application java.io.File file = new java.io.File("C:/"); // the length of time to sleep in milliseconds long millis = 5000; while (true) { // Launches the associated application to open the file. // If the specified file is a directory, the file manager of the current platform is launched to open it. desktop.open(file); // Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds, subject to the precision and accuracy of system timers and schedulers. Thread.sleep(millis); } } }
guibbor
Messages postés
213
Date d'inscription
lundi 2 août 2010
Statut
Membre
Dernière intervention
14 avril 2021
19
25 févr. 2014 à 19:12
25 févr. 2014 à 19:12
Merci Bien :)