将文本添加到xlsx OOXML文件中的单元格?
我一直在看excel生成的一些xml文件,并发现定义一个单元格的内容它是这样的:
<cr="ABC" t="s"> <t>1</t> </c>
在其他地方引用sharedString.xml文件。
所以我的问题是,是否有可能把文本内容直接在标签内? 像这样:
<c> <text>ABC</text> </c>
或者我总是需要引用外部共享的stringxml文件?
在其他地方引用sharedString.xml文件。
它在子文件“xl / sharedStrings.xml”中。 “t”元素中的值是“xl / sharedStrings.xml”中的“si”元素的索引(第一个索引为0)。
是否有可能把文本内容直接在标签内?
是的,像这样:
<cr="ABC" t="inlineStr"> <is> <t>Here is the text directly in the cell</t> </is> </c>