[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

svn blame command Line

From: APIT <anis.oueslati_at_piterion.com>
Date: Wed, 16 Apr 2008 04:49:24 -0700 (PDT)

I was trying to execute the svn blame from a Command line in Windows throw
this this code
  
 String Command = "svn blame "+svnfileUrl;
                 Process svnblame = Runtime.getRuntime().exec(Command);
                 
                    BufferedReader Resultset = new BufferedReader(
                                    new InputStreamReader (
                                            svnblame.getInputStream()));
             
                    String line;
                    FileWriter file = new
FileWriter("C:\\SVNBlameCommad.txt");
                    file.write(Command);
                    while ((line = Resultset.readLine()) != null) {
                               file.write(line);
                            }
                    file.close();

I had no result from in the Text file
the connection is allrady made caus this code sample is called in an other
module that makes the connection
Please Help

-- 
View this message in context: http://www.nabble.com/svn-blame-command-Line-tp16721075p16721075.html
Sent from the Subversion Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-04-16 13:50:14 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.