如何将docx / html转换为odt格式(Libreoffice格式)

时间:2020-10-05 05:24:02

标签: docx libreoffice odt

我正在使用给定的代码,但是将docx写入odt(LibreOffice)格式后,显示以下错误

'读取错误。 在子文档content.xml的1,2229(row,col)的文件中发现格式错误。'

如果大家都有将docx / html转换为odt(LibreOffice)格式的想法,对我会有所帮助,在此先感谢

公共类ODF1 {

public static void main(String[] args) throws Exception {

    OdfTextDocument odt = OdfTextDocument.newTextDocument();

    String store = "", data = "";
    BufferedReader bufferedReader = new BufferedReader(new FileReader("D:\\docx\\abc1.docx"));
    while ((data = bufferedReader.readLine()) != null) {
        // store=store+data+"\n";
        odt.addText(data);
    }
    bufferedReader.close();
    System.out.println(store.length());
    // odt.addText(store);

    // Save document
    odt.save("d:\\docx\\MyFilename.odt");
    System.out.println("done!!!");

}

}

 <dependency>
        <groupId>org.odftoolkit</groupId>
        <artifactId>odfdom-java</artifactId>
        <version>0.8.6</version>
    </dependency>

0 个答案:

没有答案