java将doc转docx
时间: 2023-09-06 14:13:53 浏览: 291
word转html.docx
可以使用Apache POI库来将doc文件转换为docx格式。以下是一个简单的Java代码示例:
```java
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.poi.hwpf.HWPFDocument;
import org.apache.poi.hwpf.converter.WordToConverter;
import org.apache.poi.hwpf.usermodel.Range;
public class DocToDocxConverter {
public static void main(String[] args) throws Exception {
// 读取doc文件
FileInputStream fis = new FileInputStream("input.doc");
HWPFDocument doc = new HWPFDocument(fis);
fis.close();
// 使用WordToConverter将doc转换为docx
WordToConverter converter = new WordToConverter();
Range range = doc.getRange();
FileOutputStream fos = new FileOutputStream("output.docx");
converter.processDocument(doc, fos);
fos.close();
}
}
```
需要注意的是,使用Apache POI库需要添加相应的Maven依赖或jar包。
阅读全文