如何从解决方案中的文件加载 XML 文件,使用嵌入式资源构建?
这是我的解决方案的概述:
我已将构建设置为嵌入式资源,并在生成应用程序时XML 文件不会出现在 /Release 文件夹中。这是正确的,我想要这种行为。
现在我尝试将该文件加载到 XDocument 中,以便可以解析其中的数据:
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Parsing XML.");
XDocument championXml = XDocument.Load("Champions.xml");
Console.ReadKey();
}
}
我收到文件未找到错误,因为它试图在发布文件夹的完整路径中查找 xml 文件。
如何正确地将这些数据加载到我的 XDocument 中?
Here's an outline of my solution:
I've set the build to Embedded Resource and when I generate the application the XML file doesn't appear in the /Release folder. This is correct, I want this behavior.
Now I'm trying to load that file into an XDocument so I can parse the data within:
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Parsing XML.");
XDocument championXml = XDocument.Load("Champions.xml");
Console.ReadKey();
}
}
And I get a file not found error because it's trying to find the xml file in the full path of the release folder.
How can I properly load this data into my XDocument?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
直接引用资源属性并使用 Parse 而不是 load:
根据您的项目结构,命名空间会有所不同。
Reference the resource property directly and use Parse instead of load:
The namespace will be somewhat different depending on your project structure.
使用
GetManifestResourceStream()
:可以通过调用
GetManifestResourceNames()
找到用于引用资源的确切名称。Use
GetManifestResourceStream()
:The exact names used to reference resources can be found by calling
GetManifestResourceNames()
.您应该从程序集中获取流:
其中名称类似于:'LinqToXml.Champions.xml'
You should get stream from assembly:
Where name will be something like: 'LinqToXml.Champions.xml'