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

setContent(this.getContent(), "my_content_type")不起作用

XQPart interface docs

最佳答案

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");

10-01 12:54