Aspose word document gives error when I am trying to save the Word document file again in the different path.
ERROR :
java.lang.IllegalStateException: More than 63 cells per row is not supported for this file format.
at com.aspose.words.zzXXF.visitRowStart(Unknown Source)
at com.aspose.words.zzZBz.visitRowStart(Unknown Source)
at com.aspose.words.Row.zzXh3(Unknown Source)
at com.aspose.words.CompositeNode.acceptCore(Unknown Source)
at com.aspose.words.Row.accept(Unknown Source)
Code :
public static void main(String... args) throws Exception {
com.aspose.words.License license = new com.aspose.words.License();
license.setLicense("/home/hari/IdeaProject/sirion/service/src/main/resources/aspose-licence");
Document document = new Document("/home/hari/Downloads/76142.docx");
FileOutputStream fileOut = new FileOutputStream("/home/hari/Downloads/761421.docx");
document.save(fileOut,SaveFormat.DOCX);
}