Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I tried to start vlc player in Java, but somehow it did not word. Any other Prog I tried worked. Plz have a look at my code:

 try {
        Runtime.getRuntime().exec("K:\...\vlc.exe");
    } catch (Exception ex) {
        System.out.println(ex);
    }

Where is the problem starting videoLAN Player?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
269 views
Welcome To Ask or Share your Answers For Others

1 Answer

The fact remains, you have an error and you don't know what it is. I second the advice to properly connect up (at least!) the stderr stream with a listening thread so you'll see the error message the program is throwing at you.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...