基本算法是:
- 获取具有空
Hdr 元素的文档的大小。请注意,默认编码是 UTF-8。所以我使用Encoding.Default.GetByteCount 来计算文档的大小和它的元素。
- 为每个子文档克隆此空 hdr 文档
- 对于 eash
Smt 元素,添加前检查子文档大小是否会超过最大值
使用 cmets 编写代码
var doc = XDocument.Load("data.xml");
var hdr = xdoc.Root.Element("Hdr");
var elements = hdr.Elements().ToList();
hdr.RemoveAll(); // we can remove child elements, because they are stored in a list
hdr.Value = ""; // otherwise xdoc will compact empty element to <Hdr/>
// calculating size of sub-document 'template'
var sb = new StringBuilder();
using (XmlWriter writer = XmlWriter.Create(sb))
doc.Save(writer);
var outerSizeInBytes = Encoding.Default.GetByteCount(sb.ToString());
var maxSizeInBytes = 100;
var subDocumentIndex = 0; // used just for naming sub-document files
var subDocumentSizeBytes = outerSizeInBytes; // initial size of any sub-document
var subDocument = new XDocument(doc); // clone 'template'
foreach (var smt in elements)
{
var currentElementSizeBytes = Encoding.Default.GetByteCount(smt.ToString());
if (maxSizeInBytes < subDocumentSizeBytes + currentElementSizeBytes
&& subDocumentSizeBytes != outerSizeInBytes) // case when first element is too big
{
subDocument.Save($"doc{++subDocumentIndex}.xml");
subDocument = new XDocument(doc);
subDocumentSizeBytes = outerSizeInBytes;
}
subDocument.Root.Element("Hdr").Add(smt);
subDocumentSizeBytes += currentElementSizeBytes;
}
// if current sub-document has elements added, save it too
if (outerSizeInBytes < subDocumentSizeBytes)
subDocument.Save($"doc{++subDocumentIndex}.xml");
当源为且最大大小为 250 字节时,您将获得三个文档
<?xml version="1.0"?>
<Bas>
<Hdr>
<Smt>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</Smt>
<Smt>Contrary to popular belief, Lorem Ipsum is not simply random text.</Smt>
<Smt>It has survived not only five centuries,
but also the leap into electronic typesetting, remaining essentially unchanged.</Smt>
<Smt>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</Smt>
</Hdr>
</Bas>
doc1(223 字节):
<?xml version="1.0" encoding="utf-8"?>
<Bas>
<Hdr>
<Smt>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</Smt>
<Smt>Contrary to popular belief, Lorem Ipsum is not simply random text.</Smt>
</Hdr>
</Bas>
doc2(259 字节,单个元素):
<?xml version="1.0" encoding="utf-8"?>
<Bas>
<Hdr>
<Smt>It has survived not only five centuries,
but also the leap into electronic typesetting, remaining essentially unchanged.</Smt>
</Hdr>
</Bas>
doc3(128 字节,最后一个)
<?xml version="1.0" encoding="utf-8"?>
<Bas>
<Hdr>
<Smt>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</Smt>
</Hdr>
</Bas>