Intellij IDEA Resource Bundle

Resource Bundle是什麼

能夠直接經過官方的描述來了解 https://www.jetbrains.com/hel...html

Resource bundle is a set of properties files that have same base name with different language-specific suffixes. A resource bundle contains at least two properties files with similar base name, for example file_en.properties and file_de.properties.

官方的描述是一堆有着相同前綴名稱但有着不一樣語言後綴名稱的屬性文件的集合,且至少包含2個有着類似前綴名稱的屬性文件,例如file_en.propertiesfile_de.properties
其實從字面上理解就是資源包,爲了方便統一管理繁多的國際化文件java

Resource Bundle的目錄結構
Resource Bundles目錄結構ide

只是在Intellij IDEA內顯示上多了一層名爲Resources的Resource Bundle目錄,但在實際物理目錄下Resources*.properties等文件仍在java-calculator目錄下工具

建立Resource Bundle

  • Alt + 1 打開項目工具窗口,選中要建立Resource Bundle的目錄
  • Alt + Insert - Resource Bundle
    或者主菜單 - File - New - Resource Bundle
    或者當前目錄右鍵 - New - Resource Bundle
    來打開建立Resource Bundle的對話框
  • 填寫Resource Bundle的基礎名稱
    勾選User XML-based properties files則會建立XML格式的屬性文件
    Project locale表示項目裏已經存在的區域
    Locales to add表示添加相應的區域,添加右邊的+號便可添加,多個區域用,隔開
  • 以建立一個基礎名稱爲demo的Resource Bundle爲例

建立Resource Bundle

點擊+號添加多個區域,這裏以添加zh和en爲例
添加區域idea

添加完成後,能夠在Locales to add看到已經添加的區域
添加區域後spa

點擊OK生成Resource Bundle
生成Resource Bundlecode

合併或拆分Resource Bundle

  • 添加新的屬性文件:直接在Resource Bundle 'demo'目錄右鍵 - Add Property Files to Resource Bundle,點擊+添加新的區域便可生成新的屬性文件
  • 拆分:若是不想使用Resource Bundle管理屬性文件,能夠在Resource Bundle目錄右鍵 - Dissociate Resource Bundle 'demo'
  • 合併:在同一個目錄下建立多個符合相同前綴、不一樣語言後綴名稱的屬性文件時,Intellij IDEA會自動建立Resource Bundle管理這些文件
    也能夠手動組合屬性文件,按住Ctrl + 鼠標左鍵選中多個屬性文件後右鍵 - Combine to Resource Bundle
相關文章
相關標籤/搜索