同時使用的Aspose的PDF文件轉換的docx文件,我得到這個heap size
error.here是代碼
這的docx文件是44MB
堆大小錯誤的Aspose
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");
}
有什麼建議?
嘗試增加堆大小 類似於 java -Xmx512M myprogram – aymankoo
你的意思是OutOfMemoryException? –
@BhavikShah yes堆大小錯誤基本上是outofmemory錯誤。 – Despicable