Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/08/2010, 19:42
Avatar de HackmanC
HackmanC
 
Fecha de Ingreso: enero-2008
Ubicación: Guatemala
Mensajes: 1.817
Antigüedad: 16 años, 9 meses
Puntos: 260
Sonrisa Respuesta: JFileChooser y .exec()

Hola,

¿Enviando parámetros?

Código:
"C:/Program Files (x86)/VideoLAN/VLC/vlc.exe" "C:\Users\Video.avi"
En Java y Windows podría ser algo así:

Código Java:
Ver original
  1. String linea3  = "\"C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe\" \"" + ruta + "\"";

Además puedes buscar información sobre,
System.getProperty("path.separator") y File.pathSeparator

Saludos,