04-22-2008 03:25 AM
04-22-2008 05:04 AM
ContentReader contentReader = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT);
Regards,04-22-2008 06:10 AM
04-24-2008 05:47 AM
ContentReader contentReader = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT);
InputStream is = contentReader.getContentInputStream();
…
Also refer to: http://dev.alfresco.com/resource/docs/java/repository/org/alfresco/service/cmr/repository/ContentRea...03-29-2009 06:49 PM
PDF is a binary format.Also refer to: http://dev.alfresco.com/resource/docs/java/repository/org/alfresco/service/cmr/repository/ContentRea...
ContentReader contentReader = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT);
InputStream is = contentReader.getContentInputStream();
…
Regards,
Jan
03-30-2009 03:43 AM
….
<bean id="myAction" class="org.my.executer.MyActionExecuter" parent="action-executer">
<property name="contentService">
<ref bean="ContentService" />
</property>
</bean>
….
Regards,03-30-2009 06:25 PM
…
<beans>
<!– Parse Action Bean –>
<bean id="parse-action" class="org.alfresco.sample.ParseActionExecuter" parent="action-executer" >
<property name="contentService">
<ref bean="ContentService" />
</property>
</bean>
…
…
ContentService contentService;
ContentReader contentReader = contentService.getReader(actionedUponNodeRef, ContentModel.PROP_CONTENT);
InputStream is = contentReader.getContentInputStream();
BufferedReader br= new BufferedReader(new InputStreamReader (is));
…
03-31-2009 05:41 PM
09-11-2009 12:11 AM
07-16-2010 03:24 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.