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.