tags:

views:

40

answers:

1

When i run "svn log ....... --xml", it just also dislpay in the console.

Is there a way and how to copy that log in other xml/txt file?

Because then i want use java to put those data in database.

+3  A: 

Consider using the SVN Kit Library - http://svnkit.com/. It gives you a programmatic way to perform SVN operations.

If you just want to store that in a file, you can redirect the output to a file like this

svn log --xml > log.xml
sri