在word中,我们可以启用修订功能来追踪所有对文档的更改痕迹;对所有已修改的内容,也可以选择是否接受修订来保存最终版本。以下内容将介绍通过spire.doc for java来启用word修订功能以及设置是否接受修订的方法。
启用word修订功能
import com.spire.doc.*;
public class trackchanges {
public static void main(string[] args){
//加载测试文档
document doc = new document("test.docx");
//设置文档是否接受修订
doc.settrackchanges( true);
//保存文档
doc.savetofile("result.docx",fileformat.docx_2010);
}
}
接受/拒绝修订
import com.spire.doc.*;
public class trackchanges {
public static void main(string[] args){
//加载测试文档
document doc = new document("test.docx");
//判断文档是否有修改
if (doc.haschanges())
//接受修订
doc.acceptchanges();
//拒绝修订
//doc.rejectchanges();
//保存文档
doc.savetofile("result.docx",fileformat.docx_2010);
}
}