OpenOffice 迭代 TextTable 检测合并和拆分单元格(计算 colspan 和 rowspan)
我正在使用 OpenOffice uno api 迭代编写器文档中的所有文本。目前,为了迭代文本表,我正在使用 XTextTable 接口 getCellNames() 方法。我如何检测合并和拆分的单元格。我想将表导出为 html,所以我应该计算 colspan 和 rowspan。
我将不胜感激任何建议...我没有主意了:(
I am using OpenOffice uno api to iterate through all text in writer document. To iterate over text tables currently I am using XTextTable interface getCellNames() method. How I could detect merged and split cells. I want to export table to html, so I should calculate colspan and rowspan.
I would appreciate any suggestions... I am out of ideas :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我得到了答案(实际上是 colspan 的一部分)。我知道这段代码很难看,但有一天我会重构它;)
这是表解析方法
Finally I have the answer (actually colspan part of it). This code is ugly I know, but one day I'll refactor it ;)
and here it is table parse method