tags:

views:

25

answers:

1

In my web app while creating a particular item users can browse and add images.I want to store these images in CVS.Any idea on how to do it??

+1  A: 

I want to store these images in CVS.Any idea on how to do it??

To access CVS from within java, you could either start a separate CVS-process using say ProcessBuilder, or use one of the following libraries.

aioobe