36
Points
Questions
0
Answers
5
-
Since you got the class name drop a query using a loop and get all the objects related to that class. make sure to create a new csv file (clear the data from memory at regular intervals) in order to avoid “Out of memory issues” contact admin@teqtron.com for ready made tool which extracts the data from the agile system with a minor tweeks in the property file
- 1835 views
- 3 answers
- 0 votes
-
- 2171 views
- 1 answers
- 0 votes
-
- 2082 views
- 4 answers
- 0 votes
-
- 2082 views
- 4 answers
- 0 votes
-
Iterator tabIterator = docItem.getAttachments().getTableIterator();
while (tabIterator.hasNext()) {
IRow attachmentRow = (IRow)tabIterator.next();IAttachmentFile atchFile = ((IAttachmentFile)attachmentRow);
if you want byte array use IOUtils to ease the job
IOUtils.toByteArray((InputStream)atchFile.getFile())
- 1880 views
- 1 answers
- 0 votes