Can I upload image through url
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2014 02:19 AM
Hi
I have one question. Can I store file/image using image live url in alfresco repository using cmis api or any other api?
For example I have one url like "http://epaperbeta.....com/..../...../..../...../16/Article/test.jpg"
I want to upload that image file directly to alfresco repository without storing to my hard drive..When i click on my submit button.How is it possible in alfresco??
Any help may appreciated
Thanks
I have one question. Can I store file/image using image live url in alfresco repository using cmis api or any other api?
For example I have one url like "http://epaperbeta.....com/..../...../..../...../16/Article/test.jpg"
I want to upload that image file directly to alfresco repository without storing to my hard drive..When i click on my submit button.How is it possible in alfresco??
Any help may appreciated
Thanks
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2015 05:41 AM
Yes. You can directly upload the images into repository without saving it into your hard drive.
You have to create file object with your image url like
File file = new File("your image url");
from file object you get get InputStream and save this stream into repository through Alfresco content services.
Thanks,
Nazakat
You have to create file object with your image url like
File file = new File("your image url");
from file object you get get InputStream and save this stream into repository through Alfresco content services.
Thanks,
Nazakat
