12

我面临的问题如下:

我开发了一个可移植的类库来封装服务连接。在这个类库中有一个包含字符串的 Resources.resw 文件。这些字符串仅由类库的方法调用(例如覆盖 ToString() 方法)。

正如我所说,这是一个可移植的类库。如果我将它作为 dll 引用,或者甚至作为另一个解决方案中的项目引用,它就会被构建并正确编译。然后我在我的应用程序中使用这个库的方法进行调用,比如说

        ClientFacadeConnector connector = new ClientFacadeConnector();
        ICollection<SearchResult> results = null;
        string message = string.Empty;

        if (maxResults != -1) //Search with max Results
        {
            try
            {
                if (!contextQuery.Trim().Equals(string.Empty))
                {

                    results = await connector.GetConnected().SearchAsync(contextQuery, query, maxResults);
                    message = "Search with ContextQuery " + contextQuery + ", Query " + query + ", max results " + maxResults.ToString();
                }
                else
                {

                    results = await connector.GetConnected().SearchAsync(query, maxResults, true);
                    message = "...using normal Query search, Query " + query + ", max results " + maxResults.ToString();
                }
            }
            catch (IQserException ex)
            {
                message = ex.Message;
            }
        }


        if (results != null)
        {
            ICollection<LocalSearchResult> contentResults = new List<LocalSearchResult>();
            foreach (SearchResult s in results)
            {
                var q = s.ToString();
                var contentItem = await connector.GetConnected().GetContentAsync(s.ContentId);
                LocalSearchResult lContent = new LocalSearchResult(contentItem);
                lContent.Score = s.Score;
                lContent.Relevance = s.Relevance;
                lContent.MarkFullText(query);
                contentResults.Add(lContent);
            }

在调用 s.ToString() 方法时,出现错误“找不到资源映射”。

解释这是从哪里来的:

public static class AppResources
{
    private static ResourceLoader resourceLoader;

    static AppResources()
    {
        // Load local file Resources.resw by default
        resourceLoader = new ResourceLoader();            
    }

    public static string GetResources(string key)
    {
        if (string.IsNullOrEmpty(key))
            throw new ArgumentNullException("key");

        return resourceLoader.GetString(key);
    }

}

在被覆盖的 ToString() 方法中,有如下代码:

    public override string ToString()
    {
        StringBuilder buf = new StringBuilder(AppResources.GetResources("InstrSearchResultContent"));

        if (ContentId != -1)
        {
            buf.Append(AppResources.GetResources("StringContent") + " ID:" + ContentId.ToString() + " | ");
        }
        else
        {
            buf.Append(AppResources.GetResources("StringNo") + AppResources.GetResources("StringContent") + "ID" + " | ");
        }
        ...

资源文件称为resources.resw,是ResourceLoader 在没有调用其他文件时调用的默认resw 文件。

奇怪的是,如果我在本地复制客户端应用程序中的资源文件,所有对类库资源文件的调用都会正确引用它,并且一切正常。

这个类库在完成后应该是一个 SDK。我需要单独分发资源文件吗?

这样的问题我从来没有遇到过普通的类库和 resx 文件。Resw让我毛骨悚然..

4

5 回答 5

13

看起来您必须在创建时指定资源映射的名称ResourceLoader,如下所示:

resourceLoader = new ResourceLoader("Assembly/ResourceFile");

例如,如果您的类库名为“Company.Lib.dll”,而您的资源文件是“Resources.resw”,您将使用:

resourceLoader = new ResourceLoader("Company.Lib/Resources");

这似乎没有在 MSDN 上完整记录 - 它建议您只需指定资源文件的名称,但它可能仅适用于 Windows Store 应用程序项目中的资源文件。正是这个页面告诉我,对于库,您还需要指定程序集名称。

于 2013-04-04T14:53:44.240 回答
8

即使重复如何加载字符串资源中的所有步骤,我也遇到了类似的问题。问题是我的 Resources.resw 文件是空的。当我添加一些假字符串时,一切都开始按预期工作。

于 2013-07-18T11:33:22.200 回答
4

我有一个类似的问题,我通过在属性中将 resw 文件的 Build Action 更改为 PRIResource 解决了这个问题。我已将现有的 resx 重命名为 resw,但文档没有提到您还必须更改构建操作。

于 2012-12-05T16:05:52.360 回答
2

@Rory MacLeod 发布的已接受答案可能不再正确。我试过了,VS 警告说它已ResourceLoader(String)被弃用。以下在我的情况下有效:

var loader = ResourceLoader.GetForCurrentView();
string localName = loader.GetString("someKey");
于 2014-09-12T20:51:34.830 回答
1

在开发带有类库的 UWP 应用程序时,我遇到了类似的问题。所以我的库中有一个 /Strings/en-Us/Resource.resw 文件。

ResourceLoader.GetForCurrentView().GetString("someKey");

给出一个例外

 new ResourceLoader("Company.Lib/Resources").GetString("someKey");

给我一个弃用警告但有效。

我没有发出警告的解决方案是:

ResourceLoader.GetForViewIndependentUse("AssemblyNamespace/Resources").GetString("someKey");
于 2017-09-11T21:05:21.620 回答