Package org.apache.commons.vfs.provider.irods

Examples of org.apache.commons.vfs.provider.irods.IRODSFileObject


            FileObject irodsFO = VFS.getManager().resolveFile(irodsUriString, irodsOpts);

            try
            {
                IRODSFileObject irodsFile = ((IRODSFileObject)(irodsFO));
                System.out.println("irodsFile: " + irodsFile.getURL().toString());
                FileContent content = irodsFile.getContent();
                System.out.println("about to get outputstream");
                BufferedOutputStream fileOut = new BufferedOutputStream(content.getOutputStream());

            }
            catch(Exception e)
View Full Code Here

TOP

Related Classes of org.apache.commons.vfs.provider.irods.IRODSFileObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.