문제

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

Mikey

도움이 되었습니까?

해결책

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());
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top