1

我想通过代码将屏幕截图附加到 Bugzilla 中的错误。我正在使用 J2Bugzilla API,但找不到所需的方法。请建议是否有任何其他 API 用于使用 Java 在 Bugzilla 中附加文件。

4

1 回答 1

0

要使用 J2Bugzilla 附加任何文件,您必须首先创建一个Attachment

byte[] data = ...;//Read the data as a byte array from the image file

AttachmentFactory attachmentFactory = new AttachmentFactory();
Attachment attachment = attachmentFactory.newAttachment()
    .setData(data)
    .setMime("...")//Set the appropriate MIME type for the image format
    .setSummary("My screenshot")
    .createAttachment();

然后,您可以使用以下命令将其添加到现有错误报告中AddAttachment

AddAttachment add = new AddAttachment(attachment, bug);
//'bug' is a Bug you have previously retrieved
//'conn' is the BugzillaConnector
conn.executeMethod(add);
于 2013-03-12T19:40:35.763 回答