tool to generate xml file from xsd (for testing)(从 xsd 生成 xml 文件的工具(用于测试))
问题描述
我有一个 xsd 文件,并没有做太多的 xml 操作、解析等.我想要/需要为我的代码测试 xml 文件,但没有任何示例.(我是用xerces来解析的)
I have an xsd file and have not done much xml manipulation, parsing, etc. I want/need test xml files for my code but don't have any samples. (I am using xerces to parse)
这类似于:xml-instance-generation-from-xml-架构-xsd
但我真的不想让它成为一个两步过程.(python 或 java)
but I don't really want to make it a two step process. (python or java)
我只想将 xsd 文件提供给某个工具并让它生成一个示例 xml 文件.我该怎么做?
I just want to feed xsd file to some tool and have it generate a sample xml file. How can I do that?
另请参阅:如何生成样本-xml-documents-from-their-dtd-or-xsd
推荐答案
Microsoft 已发布文档生成器"工具作为示例.这篇文章描述了示例应用的架构和操作在一些细节.
Microsoft has published a "document generator" tool as a sample. This is an article that describes the architecture and operation of the sample app in some detail.
如果您只想使用文档生成工具,点击这里 并安装 MSI.
If you just want to use the doc generation tool, click here and install the MSI.
它是免费的.源是可用的.需要 .NET Framework 才能运行.仅适用于 XSD.(不是放松 NG 或 DTD).
It's free. The source is available. Requires the .NET Framework to run. Works only with XSDs. (not Relax NG or DTD).
这篇关于从 xsd 生成 xml 文件的工具(用于测试)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 xsd 生成 xml 文件的工具(用于测试)
基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17