In my Java project I need to add versioning control to the files(Like SVN), maintain different versions to the same named files in same folder. Please help me how to do this in java programming. Eg: in my project,i maintained a folder which have set of images which are uploaded by user.but user can upload same named image n number of times.to overcome this overhead i planned to maintain versioning to each image which are same (same named).
- Is this for managing the Java source code for your project, or do you want to have something like SVN in the finished program to manage user data?Thilo– Thilo2011-11-24 05:55:19 +00:00Commented Nov 24, 2011 at 5:55
- 2Please elaborate it a bit more. you want to implement something like SVN or want to use ?Jigar Joshi– Jigar Joshi2011-11-24 05:55:54 +00:00Commented Nov 24, 2011 at 5:55
- Using svn for java projects is exactly the same as for other types, svn doesn't know or care what it's controlling. I even have a repo for random files.Kevin– Kevin2011-11-24 06:03:37 +00:00Commented Nov 24, 2011 at 6:03
- in my project,i maintained a folder which have set of images which are uploaded by user.but user can upload same named image n number of times.to overcome this overhead i planned to maintain versioning to each image which are same (same named).Rubia– Rubia2011-11-24 06:08:35 +00:00Commented Nov 24, 2011 at 6:08
- maybe just use eclipse.org/jgitMeBigFatGuy– MeBigFatGuy2011-11-24 06:16:02 +00:00Commented Nov 24, 2011 at 6:16
2 Answers
Source control code is not the way to do this. Rename the files to a uuid as they get uploaded and build a map of original filename->uuid filename with timestamps that you can then lookup or expire as needed.
2 Comments
I agree with awm. Version control is not for binary files. However, if you insist to do it like that, SVN has an API that you can use. You can access it directly from your code to commit code, update code, etc.
Here's a place to start: http://svnkit.com/
Go checkout out the SVNClientManager under "Subversion Client and IDE Integrations
Subversion clients and IDE integrations"
Good look.
(of course, I haven't used SVN in ages... I 'git' joy from a much better tool... :-))