My goal is to run SVN commands from java for one of my requirements, for the same i have already installed TortoiseSVN command line tool. Added the appropriate path\"C:/Prog
You need to separate the executable from its arguments:
new ProcessBuilder("svn", "--version")
See the ProcessBuilder constructor JavaDoc for more details and examples.