在使用 Aspose 将 docx 文件转换为 pdf 文件时出现此错误。这是此 docx 文件为 44Mbheap size
的代码
public void convertDoc(String Path, String destPath) throws Exception{
Document doc = new Document(Path); //At this line heap size error comes
doc.save(destPath);
System.out.println("doc converted to pdf");
}
有什么建议么?