|
发表于 2017-3-15 16:28:15
|
显示全部楼层
我根据你的写法做了,但是还是不行,我的代码如下:
Docs docs2 = new Docs().query(docID, docPath, null, null, null);
Doc doc2 = docs2.get(docID);
DocUtils.lock(docID);
doc2.setsDocName(docName);
doc2.setState(ModifyState.EDIT);
doc2.getRow().setDateTime("sLastWriteTime",new Timestamp(System.currentTimeMillis()));
doc2.upload(new File("D://Word模版.docx"));
docs.commitFile();
docs.createVersion();
DocUtils.unlock(docID);
请问是哪里出错? |
|