如何从解决方案中的文件加载 XML 文件,使用嵌入式资源构建?

发布于 2024-12-19 18:12:48 字数 519 浏览 1 评论 0原文

这是我的解决方案的概述:

在此处输入图像描述

我已将构建设置为嵌入式资源,并在生成应用程序时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:

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晒暮凉 2024-12-26 18:12:48

直接引用资源属性并使用 Parse 而不是 load:

XDocument championXml = XDocument.Parse(Properties.Resources.ChampionsXML);
                                                             ^^^^^^^^^^^^
                                           //Name of your resource |

根据您的项目结构,命名空间会有所不同。

Reference the resource property directly and use Parse instead of load:

XDocument championXml = XDocument.Parse(Properties.Resources.ChampionsXML);
                                                             ^^^^^^^^^^^^
                                           //Name of your resource |

The namespace will be somewhat different depending on your project structure.

金橙橙 2024-12-26 18:12:48

使用GetManifestResourceStream()

var asm = Assembly.GetExecutingAssembly();
using(var stream = asm.GetManifestResourceStream("Namespace.Champions.xml"))
{
    // ...
}

可以通过调用GetManifestResourceNames()找到用于引用资源的确切名称。

Use GetManifestResourceStream():

var asm = Assembly.GetExecutingAssembly();
using(var stream = asm.GetManifestResourceStream("Namespace.Champions.xml"))
{
    // ...
}

The exact names used to reference resources can be found by calling GetManifestResourceNames().

孤独难免 2024-12-26 18:12:48

您应该从程序集中获取流:

Assembly.GetExecutingAssembly().GetManifestResourceStream(name)

其中名称类似于:'LinqToXml.Champions.xml'

You should get stream from assembly:

Assembly.GetExecutingAssembly().GetManifestResourceStream(name)

Where name will be something like: 'LinqToXml.Champions.xml'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文