A voir également:
- Java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Java décompiler - Télécharger - Langages
- Jeux java itel touche - Forum Mobile
2 réponses
Utilisateur anonyme
11 mai 2006 à 09:14
11 mai 2006 à 09:14
En supposant que tu veux utiliser Windows Media Player dans l'exemple ci-dessous
;-)
HackTrack
import java.io.IOException; public class VideoLauncher { private static void showVideo(String videoFilePath) throws IOException { String command = "\"C:/Program Files/Windows Media Player/wmplayer.exe\" "; Runtime.getRuntime().exec(command + "\""+videoFilePath+"\""); } public static void main(String[] args) { try { VideoLauncher.showVideo("D:/hacktrack/someVideoFile.avi"); } catch (IOException e) { System.out.println("Error occurs !"); e.printStackTrace(); } } }
;-)
HackTrack