Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


I'm trying to open videos files using MPlayer, but I've found out a problem when passing the command line to it from a Java application.
I'm using the Runtime class to pass the command, but I encounter this problem:
If I have a video file named "Example.avi" or "This is a example.avi", MPlayer can read them and play without problems.
However, when the file name have got several whitespaces, like

"This    is  a   example.avi"

MPlayer tries to play a file named "This is a example.avi", therefore it tries to play a inexistent file, throwing a error.
I've already used the trim() method but it is not working.
I'd like know if there's a class or some method that could solve this.

share|improve this question
If that vague description means you are using Runtime.exec() to launch MPlayer, then it is most likely that the argument is being interpreted as multiple arguments before it ever reaches MPlayer. Look into the ProcessBuilder class, which has better ways to construct arguments and manage the streams of processes. Also, don't be shy about posting some code snippets or an SSCCE (pscode.org/sscce.html) in future, so we don't have to try and guess what you are doing wrong. – Andrew Thompson Feb 17 '11 at 14:42
Thank you. Sorry for the lack of details. I'm just new here. Your solution worked well. I used the ProcessBuilder class to pass the arguments to MPLayer, and the videos can be found no matter the whitespaces in it. Thank you again. – Ayaher Feb 19 '11 at 11:55

closed as too localized by Kev Mar 17 at 17:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Use String's trim() function before passing to the cmdline argument.

String movieName="example.avi      ";
System.out.println(movieName.trim());

output: example.avi

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.