Gregor
Gregor

Reputation: 449

Open TortoiseSVN GUI from Java

Can I launch the TortoiseSVN GUI (e.g. svn-log or preferences) from Java? I'm creating a Java program and in this program I want to open the SVN log (the GUI and not the log in the command line) of a specific svn folder.

I know I can open programs with the ProcessBuilder or make command line calls with the ProcessBuilder. But is there a way to open programs via code, which normally can only be opened in the context menu of Windows Explorer?

Upvotes: 0

Views: 91

Answers (1)

Lazy Badger
Lazy Badger

Reputation: 97282

Automating TortoiseSVN

In short: you call TortoiseProc.exe with needed command (and paramaters, if needed)

Upvotes: 2

Related Questions