我正在尝试使用以下java代码向documnet添加标头, 标题标记工作正常,如果我保存为.html,但当我保存为.doc时不工作..当我尝试保存为.docx时,文件不是在单词中打开。
fw1.flush();
//fw1.write(str);
fw1.write("<html><body>");
fw1.write("<header align = 'center'>My header</header><table><thead><tr><td>Your header goes here</td></tr></thead><tbody><tr><td>Page body in here -- as long as it needs to be</td></tr></tbody> <tfoot><tr><td>Your footer goes here</td></tr></tfoot></table>");
fw1.write("</body></html>");
fw1.close();
答案 0 :(得分:0)
使用java编辑单词doc并不是最直接的事情。大多数人会使用c#或vba来执行此操作。如果你真的想使用java,你可以尝试docx4j(http://java.dzone.com/articles/create-complex-word-docx)。