gpt4 book ai didi

c# - Assembly.GetManifestResourceStream 始终返回 null

转载 作者:行者123 更新时间:2023-11-30 13:44:41 39 4
gpt4 key购买 nike

每当我处理Path-Resolution 的任务时,我总是感到困惑。关于所报告的问题,我有以下信息:

  • 使用 ASP.NET MVC-5 应用程序
  • 尝试通过以下代码访问字体文件,即MyriadPro-SemiBold.ttf
//a value receives a path + name of the file in variable i.e. name
string name = "myApplicationName.fonts.MyriadPro-Semibold.ttf";

//object (named as assembly) of class System.Reflection.Assembly.
var assembly = Assembly.GetExecutingAssembly();

using (Stream stream = assembly.GetManifestResourceStream(name))
// stream always gets null value (don't know why!)
{
if(stream != null)
{
//myCode waiting for above stream not to be null :-(
}
else
{
throw new ArgumentException("No resource with name " + name);
}
}

路径方面,我不太了解 Visual Studio 在不同类型的应用程序中的工作方式。

最佳答案

你的资源应该被嵌入:

enter image description here

您可以做一个小测试来获取所有资源并找到好名字。之后您的代码似乎是正确的。

 var allRessources= System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceNames();

var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("fullpath here");
if (stream == null) return;

编辑

要在 VS 项目中添加文件作为嵌入式资源:只需将文件添加到项目中,单击它,然后在Properties 下将Build Action 设置为嵌入式资源。就是这样!

有关嵌入式资源的更多信息:https://support.microsoft.com/en-us/kb/319292#bookmark-4

关于c# - Assembly.GetManifestResourceStream 始终返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36185053/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com