0

我们可以通过调用方法获取内容类型:XQPart.getContentType()但是我不知道如何为XQ消息的当前部分设置内容类型

setContent(this.getContent(), "my_content_type")不工作

XQPart 接口文档

4

1 回答 1

1

setContent(this.getContentType(), "some_stuff") 不起作用

这应该是setContent("<your stuff>", "<content-type>");,即第一个参数是实际内容,第二个参数是它的类型。

例如

setContent("this is sample text", "text/plain");
setContent("<html><body>this is sample html</body></html>", "text/html");
setContent(<XQPart whose content is an excel sheet>, "application/vnd.ms-excel");
于 2012-10-01T10:00:43.860 回答