Question

I'm using MantisConnect & Java to feed my bugtracker with issues. Does anyone know how to add attachments, like text files etc. ?

Mikey

Was it helpful?

Solution

Figured it out!

First you create an issue object and add it to your session object. Afterwards you can add an attachment too. This looks something like:

IIssue issue = session.newIssue();
session.addIssue(issue); 
File file = new File(PathToYourAttachment);
LocalFileIssueAttachment attachment = new LocalFileIssueAttachment(file);
session.addIssueAttachment(session.getBiggestIssueId(projects[0].getId()), filename, attachment.getContentType(), attachment.getData());
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top