共用方式為


System.Resources.ResourceManager.GetString 方法

本文提供此 API 參考文件的補充備註。

屬性 IgnoreCase 決定 name 與資源名稱比較時,是否忽略大小寫(預設值)或區分大小寫。

備註

GetString方法可能會擲回比列出的更多例外狀況。 發生這種狀況的其中一個原因是此方法所調用的方法拋出異常。 例如,可能會擲回 FileLoadException 例外狀況,這發生在部署或安裝附屬元件時出錯;或者,當使用者定義類型在還原序列化時擲回使用者定義例外狀況時,可能會擲回 SerializationException 例外狀況。

GetString(String) 方法

桌面應用程式

在桌面應用程式中,傳回的資源會根據目前線程的使用者介面文化,如CultureInfo.CurrentUICulture屬性所定義,進行當地語系化。 如果資源尚未針對該文化特性進行本地化,資源管理員會依照 封裝和部署資源 一文的「資源回退過程」章節中所述的步驟來尋找資源。 如果找不到一組可使用的本地化資源,資源管理員會回退到預設文化特性的資源。 如果資源管理員無法載入預設文化特性的資源集,此方法會擲回 MissingManifestResourceException 例外狀況;若預期資源集存在於附屬元件中,則會擲回 MissingSatelliteAssemblyException 例外狀況。 如果資源管理員可以載入適當的資源集,但找不到名為 name的資源,此方法會傳 null回 。

Windows 8.x 應用程式

這很重要

雖然 Windows 8.x 應用程式中支援 ResourceManager 類別,但我們不建議使用。 只有在您開發可與 Windows 8.x 應用程式搭配使用的可攜式類別庫專案時,才使用此類別。 若要從 Windows 8.x 應用程式擷取資源,請改用 Windows.ApplicationModel.Resources.ResourceLoader 類別。

在 Windows 8.x 應用程式中, GetString(String) 此方法會傳回字串資源的值 name ,針對呼叫端目前的 UI 文化特性設定進行當地語系化。 文化清單衍生自作業系統偏好的UI語言清單。 如果資源管理員無法比對 name,則方法會傳 null回 。

範例

下列範例會使用 GetString 方法來擷取特定文化特性的資源。 它由英文(en)、法文(法國)(fr-FR)和俄羅斯(俄羅斯)(ru-RU)文化 .txt 檔案彙編的資源組成。 此範例會將目前的文化特性和目前的UI文化特性變更為英文(美國)、法文(法國)、俄羅斯文(俄羅斯)和瑞典文(瑞典)。 然後它會呼叫 GetString 方法來擷取本地化字串,並顯示該字串和目前的日期和月份。 請注意,輸出會顯示適當的本地化字串,除非當前的使用者介面文化是瑞典文(瑞典)。 由於無法使用瑞典文語言資源,因此應用程式會改用預設文化特性的資源,也就是英文。 此範例需要下表所列的文字型資源檔。 每個都有名為 DateStart的單一字串資源。

文化特性 檔案名稱 資源名稱 資源值
en-US DateStrings.txt DateStart 今天是
fr-FR DateStrings.fr-FR.txt DateStart 今天,這是
ru-RU DateStrings.ru-RU.txt DateStart Сегодня

您可以使用下列批處理文件來編譯 C# 範例。 針對 Visual Basic,將變更 cscvbc,並將原始碼檔案的延伸模組從 .cs 變更為 .vb

resgen DateStrings.txt
csc showdate.cs /resource:DateStrings.resources

md fr-FR
resgen DateStrings.fr-FR.txt
al /out:fr-FR\Showdate.resources.dll /culture:fr-FR /embed:DateStrings.fr-FR.resources

md ru-RU
resgen DateStrings.ru-RU.txt
al /out:ru-RU\Showdate.resources.dll /culture:ru-RU /embed:DateStrings.ru-RU.resources

以下是範例的原始碼(適用於 Visual Basic 版本ShowDate.vb或 C# 版本的ShowDate.cs)。

using System;
using System.Globalization;
using System.Resources;
using System.Threading;

public class Example
{
   public static void Main()
   {
      string[] cultureNames = [ "en-US", "fr-FR", "ru-RU", "sv-SE" ];
      ResourceManager rm = new ResourceManager("DateStrings",
                                               typeof(Example).Assembly);

      foreach (var cultureName in cultureNames) {
         CultureInfo culture = CultureInfo.CreateSpecificCulture(cultureName);
         Thread.CurrentThread.CurrentCulture = culture;
         Thread.CurrentThread.CurrentUICulture = culture;

         Console.WriteLine($"Current UI Culture: {CultureInfo.CurrentUICulture.Name}");
         string dateString = rm.GetString("DateStart");
         Console.WriteLine($"{dateString} {DateTime.Now:M}.\n");
      }
   }
}
// The example displays output similar to the following:
//       Current UI Culture: en-US
//       Today is February 03.
//
//       Current UI Culture: fr-FR
//       Aujourd'hui, c'est le 3 février
//
//       Current UI Culture: ru-RU
//       Сегодня февраля 03.
//
//       Current UI Culture: sv-SE
//       Today is den 3 februari.
Imports System.Globalization
Imports System.Resources
Imports System.Threading

<Assembly:NeutralResourcesLanguage("en")>

Module Example
   Public Sub Main()
      Dim cultureNames() As String = { "en-US", "fr-FR", "ru-RU", "sv-SE" }
      Dim rm As New ResourceManager("DateStrings",
                                    GetType(Example).Assembly)
      
      For Each cultureName In cultureNames
         Dim culture As CultureInfo = CultureInfo.CreateSpecificCulture(cultureName)
         Thread.CurrentThread.CurrentCulture = culture 
         Thread.CurrentThread.CurrentUICulture = culture

         Console.WriteLine("Current UI Culture: {0}", 
                           CultureInfo.CurrentUICulture.Name)
         Dim dateString As String = rm.GetString("DateStart")
         Console.WriteLine("{0} {1:M}.", dateString, Date.Now)                           
         Console.WriteLine()
      Next                                           
   End Sub
End Module
' The example displays output similar to the following:
'       Current UI Culture: en-US
'       Today is February 03.
'       
'       Current UI Culture: fr-FR
'       Aujourd'hui, c'est le 3 février
'       
'       Current UI Culture: ru-RU
'       Сегодня февраля 03.
'       
'       Current UI Culture: sv-SE
'       Today is den 3 februari.

GetString(String, CultureInfo) 方法

桌面應用程式

在桌面應用程式中,如果 culturenull,那麼方法 GetString(String, CultureInfo) 會使用從 CultureInfo.CurrentUICulture 屬性取得的目前 UI 文化特性。

傳回的資源會針對 參數所 culture 指定的文化特性進行當地語系化。 如果某資源尚未當地語系化為 culture,則資源管理員會依照 封裝和部署資源 主題中「資源回退過程」一節所述的步驟,來探查該資源。 如果找不到一組可用資源,資源管理員會使用預設文化特性的資源。 如果資源管理員無法載入預設文化特性的資源集,此方法會擲回MissingManifestResourceException例外狀況;如果預期資源集位於附屬元件中,則會擲回MissingSatelliteAssemblyException例外狀況。 如果資源管理員可以載入適當的資源集,但找不到名為 name的資源,此方法會傳 null回 。

Windows 8.x 應用程式

這很重要

雖然 Windows 8.x 應用程式中支援 ResourceManager 類別,但我們不建議使用。 只有在您開發可與 Windows 8.x 應用程式搭配使用的可攜式類別庫專案時,才使用此類別。 若要從 Windows 8.x 應用程式擷取資源,請改用 Windows.ApplicationModel.Resources.ResourceLoader 類別。

在 Windows 8.x 應用程式中, GetString(String, CultureInfo) 方法會傳回字串資源的值 name ,其已針對 參數所 culture 指定的文化特性進行當地語系化。 如果資源未針對 culture 文化特性進行當地語系化,查閱會使用整個 Windows 8 語言後援清單,並在查看預設文化特性之後停止。 如果資源管理員無法比對 name,則方法會傳 null回 。

範例

下列範例會使用 GetString(String, CultureInfo) 方法來擷取特定文化特性的資源。 此範例的預設文化特性為英語(en),並包括法語(法國)(fr-FR)和俄語(俄羅斯)(ru-RU)文化的衛星元件。 此範例會在呼叫 GetString(String, CultureInfo)之前,將目前的文化特性和目前的UI文化特性變更為俄文(俄羅斯)。 然後,它會呼叫 GetString 方法和方法 DateTime.ToString(String, IFormatProvider) ,並將代表法國(法國)和瑞典(瑞典)文化特性的對象傳遞給 CultureInfo 每個方法。 在輸出中,月份和月中的日期以及出現在它們前面的字串會以法文顯示,因為 GetString 方法能夠擷取法文語言資源。 不過,使用瑞典(瑞典)文化特性時,月份和日期以瑞典文顯示,而它們前面的字串是英文的。 這是因為資源管理員找不到本地化的瑞典文語言資源,因此會改為傳回預設英文文化特性的資源。

此範例需要下表所列的文字型資源檔。 每個都有名為 DateStart的單一字串資源。

文化特性 檔案名稱 資源名稱 資源值
en-US DateStrings.txt DateStart 今天是
fr-FR DateStrings.fr-FR.txt DateStart 今天,這是
ru-RU 俄羅斯語 DateStrings.ru-RU.txt DateStart Сегодня

您可以使用下列批處理文件來編譯 Visual Basic 範例。 若要在 C# 中編譯,請將 變更 vbccsc,並將原始碼檔案的擴展名從 .vb 變更為 .cs

resgen DateStrings.txt
vbc showdate.vb /resource:DateStrings.resources

md fr-FR
resgen DateStrings.fr-FR.txt
al /out:fr-FR\Showdate.resources.dll /culture:fr-FR /embed:DateStrings.fr-FR.resources

md ru-RU
resgen DateStrings.ru-RU.txt
al /out:ru-RU\Showdate.resources.dll /culture:ru-RU /embed:DateStrings.ru-RU.resources

以下是範例的原始碼(適用於 Visual Basic 版本ShowDate.vb或 C# 版本的ShowDate.cs)。

using System;
using System.Globalization;
using System.Resources;
using System.Threading;

public class Example2
{
    public static void Main()
    {
        Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("ru-RU");
        Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture("ru-RU");

        string[] cultureNames = [ "fr-FR", "sv-SE" ];
        ResourceManager rm = new ResourceManager("DateStrings",
                                                 typeof(Example).Assembly);

        foreach (var cultureName in cultureNames)
        {
            CultureInfo culture = CultureInfo.CreateSpecificCulture(cultureName);
            string dateString = rm.GetString("DateStart", culture);
            Console.WriteLine($"{culture.DisplayName}: {dateString} {DateTime.Now.ToString("M", culture)}.");
            Console.WriteLine();
        }
    }
}
// The example displays output similar to the following:
//       French (France): Aujourd'hui, c'est le 7 février.
//
//       Swedish (Sweden): Today is den 7 februari.
Imports System.Globalization
Imports System.Resources
Imports System.Threading

Module Example2
    Public Sub Main()
        Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("ru-RU")
        Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture("ru-RU")

        Dim cultureNames() As String = {"fr-FR", "sv-SE"}
        Dim rm As New ResourceManager("DateStrings",
                                    GetType(Example).Assembly)

        For Each cultureName In cultureNames
            Dim culture As CultureInfo = CultureInfo.CreateSpecificCulture(cultureName)
            Dim dateString As String = rm.GetString("DateStart", culture)
            Console.WriteLine("{0}: {1} {2}.", culture.DisplayName, dateString,
                                            Date.Now.ToString("M", culture))
            Console.WriteLine()
        Next
    End Sub
End Module
' The example displays output similar to the following:
'       French (France): Aujourd'hui, c'est le 7 février.
'       
'       Swedish (Sweden): Today is den 7 februari.