RM新时代网站-首页

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

鴻蒙開發(fā)接口資源管理:【@ohos.intl (國際化-Intl)】

jf_46214456 ? 來源:jf_46214456 ? 作者:jf_46214456 ? 2024-06-03 09:28 ? 次閱讀

國際化-Intl

icon-note.gif說明:
開發(fā)前請熟悉鴻蒙開發(fā)指導(dǎo)文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md]

  • 本模塊首批接口從API version 6開始支持。后續(xù)版本的新增接口,采用上角標單獨標記接口的起始版本。
  • Intl模塊包含國際化能力基礎(chǔ)接口(在ECMA 402中定義)。

導(dǎo)入模塊

import Intl from '@ohos.intl';

Locale

屬性

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
languagestring與區(qū)域設(shè)置關(guān)聯(lián)的語, 如:zh。
scriptstring語言的書寫方式,如:Hans。
regionstring與區(qū)域設(shè)置相關(guān)的地區(qū),如:CN。
baseNamestringLocale的基本核心信息(由語言腳本與地區(qū)組成),如:zh-Hans-CN。
caseFirststring區(qū)域的整理規(guī)則是否考慮大小寫,取值包括:"upper", "lower", "false"。
calendarstring區(qū)域的日歷信息,取值包括:"buddhist", "chinese", "coptic","dangi", "ethioaa", "ethiopic", "gregory", "heew", "indian", "islamic", "islamic-umalqura", "islamic-tbla", "islamic-civil", "islamic-rgsa", "iso8601", "japanese", "persian", "roc", "islamicc"。
collationstring區(qū)域的排序規(guī)則,取值包括:"big5han", "compat", "dict", "direct", "ducet", "eor", "gb2312", "phonebk", "phonetic", "pinyin", "reformed", "searchjl", "stroke", "trad", "unihan", "zhuyin"。
hourCyclestring區(qū)域的時制信息,取值包括:"h12", "h23", "h11", "h24"。
numberingSystemstring區(qū)域使用的數(shù)字系統(tǒng),取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "ah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
numericboolean是否對數(shù)字字符具有特殊的排序規(guī)則處理。

constructor8+

constructor()

創(chuàng)建區(qū)域?qū)ο?/p>

系統(tǒng)能力 :SystemCapability.Global.I18n

示例:

var locale = new Intl.Locale();

constructor

constructor(locale: string, options?: LocaleOptions)

創(chuàng)建區(qū)域?qū)ο?/p>

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
localestring包含區(qū)域設(shè)置信息的字符串,包括語言以及可選的腳本和區(qū)域。
optionsLocaleOptions用于創(chuàng)建區(qū)域?qū)ο蟮倪x項。

示例:

var locale = new Intl.Locale("zh-CN");

toString

toString(): string

將區(qū)域信息轉(zhuǎn)換為字符串

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
string字符串形式的區(qū)域信息。

示例:

var locale = new Intl.Locale("zh-CN");
locale.toString();

maximize

maximize(): Locale

最大化區(qū)域信息,若缺少腳本與地區(qū)信息,則補齊。

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
[Locale]最大化后的區(qū)域?qū)ο蟆?/td>

示例:

var locale = new Intl.Locale("zh-CN");
locale.maximize();

minimize

minimize(): Locale

最小化區(qū)域信息,若包含腳本與地區(qū)信息,則去除。

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
[Locale]最小化后的區(qū)域?qū)ο蟆?/td>

示例:

var locale = new Intl.Locale("zh-CN");
locale.minimize();

LocaleOptions

表示區(qū)域初始化選項。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
calendarstring日歷參數(shù),如:"buddhist", "chinese", "coptic", "dangi", "ethioaa", "ethiopic", "gregory", "heew", "indian", "islamic", "islamic-umalqura", "islamic-tbla", "islamic-civil", "islamic-rgsa", "iso8601", "japanese", "persian", "roc", "islamicc"。
collationstring排序參數(shù),取值包括:"big5han", "compat", "dict", "direct", "ducet", "emoji", "eor", "gb2312", "phonebk", "phonetic", "pinyin", "reformed ", "search", "searchjl", "standard", "stroke", "trad", "unihan", "zhuyin"。
hourCyclestring時制格式,取值包括:"h11", "h12", "h23", "h24"。
numberingSystemstring數(shù)字系統(tǒng),取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "ah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
numericboolean是否使用12小時制。
caseFirststring表示大寫、小寫的排序順序,取值范圍:"upper", "lower", "false"。

DateTimeFormat

constructor8+

constructor()

創(chuàng)建時間日期格式化對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

示例:

var datefmt= new Intl.DateTimeFormat();

constructor

constructor(locale: string | Array, options?: DateTimeOptions)

創(chuàng)建時間日期格式化對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
localestringArray
options[DateTimeOptions]用于創(chuàng)建時間日期格式化的選項。

示例:

var datefmt= new Intl.DateTimeFormat("zh-CN", { dateStyle: 'full', timeStyle: 'medium' });

示例:

var datefmt= new Intl.DateTimeFormat(["ban", "zh"], { dateStyle: 'full', timeStyle: 'medium' });

format

format(date: Date): string

格式化時間日期字符串。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
dateDate時間日期對象。

返回值:

類型說明
string格式化后的時間日期字符串

示例:

var date = new Date(2021, 11, 17, 3, 24, 0);
var datefmt = new Intl.DateTimeFormat("en-GB");
datefmt.format(date);

formatRange

formatRange(startDate: Date, endDate: Date): string

格式化時間日期段字符串。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
startDateDate起始的時間日期。
endDateDate結(jié)束的時間日期。

返回值:

類型說明
string格式化后的時間日期段字符串。

示例:

var startDate = new Date(2021, 11, 17, 3, 24, 0);
var endDate = new Date(2021, 11, 18, 3, 24, 0);
var datefmt = new Intl.DateTimeFormat("en-GB");
datefmt.formatRange(startDate, endDate);

resolvedOptions

resolvedOptions(): DateTimeOptions

獲取DateTimeFormat對象的格式化選項。

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
[DateTimeOptions]DateTimeFormat 對象的格式化選項。

示例:

var datefmt = new Intl.DateTimeFormat("en-GB");
datefmt.resolvedOptions();

DateTimeOptions

表示時間日期格式化選項。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
localestring區(qū)域參數(shù), 如:zh-Hans-CN。
dateStylestring日期顯示格式,取值包括:"long", "short", "medium", "full"。
timeStylestring時間顯示格式,取值包括:"long", "short", "medium", "full"。
hourCyclestring時制格式,取值包括:"h11", "h12", "h23", "h24"。
timeZonestring使用的時區(qū)(合法的IANA時區(qū)ID)。
numberingSystemstring數(shù)字系統(tǒng),取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "ah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
hour12boolean是否使用12小時制。
weekdaystring工作日的顯示格式,取值包括:"long", "short", "narrow"。
erastring時代的顯示格式,取值包括:"long", "short", "narrow"。
yearstring年份的顯示格式,取值包括:"numeric", "2-digit"。
monthstring月份的顯示格式,取值包括:"numeric", "2-digit", "long", "short", "narrow"。
daystring日期的顯示格式,取值包括:"numeric", "2-digit"。
hourstring小時的顯示格式,取值包括:"numeric", "2-digit"。
minutestring分鐘的顯示格式,取值包括:"numeric", "2-digit"。
secondstring秒鐘的顯示格式,取值包括:"numeric", "2-digit"。
timeZoneNamestring時區(qū)名稱的本地化表示。
dayPeriodstring時段的顯示格式,取值包括:"long", "short", "narrow"。
localeMatcherstring要使用的區(qū)域匹配算法,取值包括:"lookup", "best fit"。
formatMatcherstring要使用的格式匹配算法,取值包括:"basic", "best fit"。

NumberFormat

constructor8+

constructor()

創(chuàng)建數(shù)字格式化對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

示例:

var numfmt = new Intl.NumberFormat();

constructor

constructor(locale: string | Array, options?: NumberOptions)

創(chuàng)建數(shù)字格式化對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
localestringArray
options[NumberOptions]用于創(chuàng)建數(shù)字格式化的選項。

示例:

var numfmt = new Intl.NumberFormat("en-GB", {style:'decimal', notation:"scientific"});

format

format(number: number): string;

格式化數(shù)字字符串。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
numbernumber數(shù)字對象

返回值:

類型說明
string格式化后的數(shù)字字符串

示例:

var numfmt = new Intl.NumberFormat(["en-GB", "zh"], {style:'decimal', notation:"scientific"});
numfmt.format(1223);

resolvedOptions

resolvedOptions(): NumberOptions

獲取NumberFormat 對象的格式化選項。

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
[NumberOptions]NumberFormat 對象的格式化選項。

示例:

var numfmt = new Intl.NumberFormat(["en-GB", "zh"], {style:'decimal', notation:"scientific"});
numfmt.resolvedOptions();

NumberOptions

表示設(shè)備支持的能力。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
localestring區(qū)域參數(shù), 如:"zh-Hans-CN"。
currencystring貨幣單位, 如:"EUR","CNY","USD"等。
currencySignstring貨幣單位的符號顯示,取值包括: "symbol","narrowSymbol","code","name" 。
currencyDisplaystring貨幣的顯示方式,取值包括:"symbol", "narrowSymbol", "code", "name"。
unitstring單位名稱,如:"meter","inch",“hectare”等。
unitDisplaystring單位的顯示格式,取值包括:"long", "short", "narrow"。
unitUsage8+string單位的使用場景,取值包括:"default", "area-land-agricult", "area-land-commercl", "area-land-residntl", "length-person", "length-person-small", "length-rainfall", "length-road", "length-road-small", "length-snowfall", "length-vehicle", "length-visiblty", "length-visiblty-small", "length-person-informal", "length-person-small-informal", "length-road-informal", "speed-road-travel", "speed-wind", "temperature-person", "temperature-weather", "volume-vehicle-fuel"。
signDisplaystring數(shù)字符號的顯示格式,取值包括:"auto", "never", "always", "expectZero"。
compactDisplaystring緊湊型的顯示格式,取值包括:"long", "short"。
notationstring數(shù)字的格式化規(guī)格,取值包括:"standard", "scientific", "engineering", "compact"。
localeMatcherstring要使用的區(qū)域匹配算法,取值包括:"lookup", "best fit"。
stylestring數(shù)字的顯示格式,取值包括:"decimal", "currency", "percent", "unit"。
numberingSystemstring數(shù)字系統(tǒng),取值包括:"adlm", "ahom", "arab", "arabext", "bali", "beng", "bhks", "ah", "cakm", "cham", "deva", "diak", "fullwide", "gong", "gonm", "gujr", "guru", "hanidec", "hmng", "hmnp", "java", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"。
useGroupingboolean是否分組顯示。
minimumIntegerDigitsnumber表示要使用的最小整數(shù)位數(shù),取值范圍:1~21。
minimumFractionDigitsnumber表示要使用的最小分數(shù)位數(shù),取值范圍:0~20。
maximumFractionDigitsnumber表示要使用的最大分數(shù)位數(shù),取值范圍:1~21。
minimumSignificantDigitsnumber表示要使用的最低有效位數(shù),取值范圍:1~21。
maximumSignificantDigitsnumber表示要使用的最大有效位數(shù),取值范圍:1~21。

Collator8+

constructor8+

constructor()

創(chuàng)建排序?qū)ο蟆?/p>

系統(tǒng)能力 :SystemCapability.Global.I18n

示例:

var collator = new Intl.Collator();

constructor8+

constructor(locale: string | Array, options?: CollatorOptions)

創(chuàng)建排序?qū)ο蟆?/p>

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
localestringArray
options[CollatorOptions]用于創(chuàng)建排序?qū)ο蟮倪x項。

示例:

var collator = new Intl.Collator("zh-CN", {localeMatcher: "lookup", usage: "sort"});

compare8+

compare(first: string, second: string): number

依據(jù)Collator的排序策略對兩個字符串進行比較。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
firststring進行比較第一個字符串。
secondstring進行比較的第二個字符串。

返回值:

類型說明
number比較結(jié)果。當number為負數(shù),表示first排序在second之前;當number為0,表示first與second排序相同;當number為正數(shù),表示first排序在second之后。

示例:

var collator = new Intl.Collator("zh-Hans");
collator.compare("first", "second");

resolvedOptions8+

resolvedOptions(): CollatorOptions

返回Collator對象的屬性。

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
[CollatorOptions]返回的Collator對象的屬性。

示例:

var collator = new Intl.Collator("zh-Hans");
var options = collator.resolvedOptions();

CollatorOptions8+[]()

表示Collator可設(shè)置的屬性。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
localeMatcherstringlocale匹配算法,取值范圍:"best fit", "lookup"。
usagestring比較的用途,取值范圍:"sort", "search"。
sensitivitystring表示字符串中的哪些差異會導(dǎo)致非零結(jié)果值,取值范圍:"base", "accent", "case", "variant"。
ignorePunctuationboolean表示是否忽略標點符號,取值范圍:true, false。
collationstring排序規(guī)則,取值范圍:"big5han", "compat", "dict", "direct", "ducet", "eor", "gb2312", "phonebk", "phonetic", "pinyin", "reformed", "searchjl", "stroke", "trad", "unihan", "zhuyin"。
numericboolean是否使用數(shù)字排序,取值范圍:true, false。
caseFirststring表示大寫、小寫的排序順序,取值范圍:"upper", "lower", "false"。

PluralRules8+

constructor8+

constructor()

創(chuàng)建PluralRules對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

示例:

var pluralRules = new Intl.PluralRules();

constructor8+

constructor(locale: string | Array, options?: PluralRulesOptions)

創(chuàng)建PluralRules對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
localestringArray
options[PluralRulesOptions]用于創(chuàng)建單復(fù)數(shù)對象的選項。

示例:

var pluralRules= new Intl.PluraRules("zh-CN", {"localeMatcher": "lookup", "type": "cardinal"});

select8+

select(n: number): string

返回一個字符串表示該數(shù)字的單復(fù)數(shù)類別。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
nnumber待獲取單復(fù)數(shù)類別的數(shù)字。

返回值:

類型說明
string單復(fù)數(shù)類別,取值包括:"zero","one","two", "few", "many", "others"。

示例:

var pluralRules = new Intl.PluralRules("zh-Hans");
pluralRules.select(1);

PluralRulesOptions8+[]()

表示PluralRules對象可設(shè)置的屬性。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
localeMatcherstringlocale匹配算法,取值包括:"best fit", "lookup"。
typestring排序的類型,取值包括:"cardinal", "ordinal"。
minimumIntegerDigitsnumber表示要使用的最小整數(shù)位數(shù),取值范圍:1~21。
minimumFractionDigitsnumber表示要使用的最小分數(shù)位數(shù),取值范圍:0~20。
maximumFractionDigitsnumber表示要使用的最大分數(shù)位數(shù),取值范圍:1~21。
minimumSignificantDigitsnumber表示要使用的最低有效位數(shù),取值范圍:1~21。
maximumSignificantDigitsnumber表示要使用的最大有效位數(shù),取值范圍:1~21。

RelativeTimeFormat8+

constructor8+

constructor()

創(chuàng)建相對時間格式化對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

示例:

var relativetimefmt = new Intl.RelativeTimeFormat();

constructor8+

constructor(locale: string | Array, options?: RelativeTimeFormatInputOptions)

創(chuàng)建相對時間格式化對象。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
localestringArray
options[RelativeTimeFormatInputOptions]用于創(chuàng)建相對時間格式化對象的選項。

示例:

var relativeTimeFormat = new Intl.RelativeTimeFormat("zh-CN", {"localeMatcher": "lookup", "numeric": "always", "style": "long"});

format8+

format(value: number, unit: string): string

依據(jù)locale和格式化選項,對value和unit進行格式化。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
valuenumber相對時間格式化的數(shù)值。
unitstring相對時間格式化的單位,取值包括:"year", "quarter", "month", "week", "day", "hour", "minute", "second"。

返回值:

類型說明
string格式化后的相對時間。

示例:

var relativetimefmt = new Intl.RelativeTimeFormat("zh-CN");
relativetimefmt.format(3, "quarter")

formatToParts8+

formatToParts(value: number, unit: string): Array

返回一個對象數(shù)組,表示可用于自定義區(qū)域設(shè)置格式的相對時間格式。

系統(tǒng)能力 :SystemCapability.Global.I18n

參數(shù):

參數(shù)名類型必填說明
valuenumber相對時間格式化的數(shù)值。
unitstring相對時間格式化的單位,取值包括:"year", "quarter", "month", "week", "day", "hour", "minute", "second"。

返回值:

類型說明
Array返回可用于自定義區(qū)域設(shè)置格式的相對時間格式的對象數(shù)組。

示例:

var relativetimefmt = new Intl.RelativeTimeFormat("en", {"numeric": "auto"});
var parts = relativetimefmt.format(10, "seconds");

resolvedOptions8+

resolvedOptions(): RelativeTimeFormatResolvedOptions

獲取RelativeTimeFormat對象的格式化選項。

系統(tǒng)能力 :SystemCapability.Global.I18n

返回值:

類型說明
[RelativeTimeFormatResolvedOptions]RelativeTimeFormat 對象的格式化選項。

示例:

var relativetimefmt= new Intl.RelativeTimeFormat("en-GB");
relativetimefmt.resolvedOptions();

RelativeTimeFormatInputOptions8+[]()

表示RelativeTimeFormat對象可設(shè)置的屬性。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

名稱參數(shù)類型可讀可寫說明
localeMatcherstringlocale匹配算法,取值包括:"best fit", "lookup"。
numericstring輸出消息的格式,取值包括:"always", "auto"。
stylestring國際化消息的長度,取值包括:"long", "short", "narrow"。

RelativeTimeFormatResolvedOptions8+[]()

表示RelativeTimeFormat對象可設(shè)置的屬性。

系統(tǒng)能力 :以下各項對應(yīng)的系統(tǒng)能力均為SystemCapability.Global.I18n

新文檔.png

名稱參數(shù)類型可讀可寫說明HarmonyOSOpenHarmony鴻蒙文檔籽料:mau123789是v直接拿
localestring包含區(qū)域設(shè)置信息的字符串,包括語言以及可選的腳本和區(qū)域。
numericstring輸出消息的格式,取值包括:"always", "auto"。
stylestring國際化消息的長度,取值包括:"long", "short", "narrow"。
numberingSystemstring使用的數(shù)字系統(tǒng)。

審核編輯 黃宇

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 接口
    +關(guān)注

    關(guān)注

    33

    文章

    8575

    瀏覽量

    151015
  • 鴻蒙
    +關(guān)注

    關(guān)注

    57

    文章

    2339

    瀏覽量

    42805
收藏 人收藏

    評論

    相關(guān)推薦

    鴻蒙OS開發(fā):【一次開發(fā),多端部署】(資源管理器)解析

    ,使用[@ohos.resourceManager.d.ts] 中的接口,展示了格式字符串查詢、基于指定屏幕分辨率查詢媒體資源、獲取系統(tǒng)資源管理
    的頭像 發(fā)表于 05-21 15:59 ?1067次閱讀
    <b class='flag-5'>鴻蒙</b>OS<b class='flag-5'>開發(fā)</b>:【一次<b class='flag-5'>開發(fā)</b>,多端部署】(<b class='flag-5'>資源管理</b>器)解析

    鴻蒙開發(fā)接口資源管理:【@ohos.resourceManager (資源管理)】

    資源管理模塊,根據(jù)當前configuration(語言,區(qū)域,橫豎屏,mccmnc)和device capability(設(shè)備類型,分辨率)提供獲取應(yīng)用資源信息讀取接口。
    的頭像 發(fā)表于 06-03 15:10 ?1115次閱讀
    <b class='flag-5'>鴻蒙</b><b class='flag-5'>開發(fā)</b><b class='flag-5'>接口</b><b class='flag-5'>資源管理</b>:【@<b class='flag-5'>ohos</b>.resourceManager (<b class='flag-5'>資源管理</b>)】

    圖形的電力通信資源管理系統(tǒng)

    提供必要的基礎(chǔ)數(shù)據(jù)和管理工具。(3)開發(fā)思路1)整合通信信息資源,實現(xiàn)信息和數(shù)據(jù)共享;2)面向?qū)ο?、流程和任?wù),使得管理信息,提升
    發(fā)表于 09-26 15:33

    VisualNet圖形的設(shè)計與設(shè)備線路資源管理平臺

    的“VisualNet圖形的設(shè)計與設(shè)備線路資源管理平臺”軟件能很好地滿足我們的要求。VisualNet本身是一個開放式的資源管理系統(tǒng)開發(fā)平臺,功能強大、無需編寫任何代碼,即能對電力通
    發(fā)表于 09-28 16:46

    圖形的機房標識與資源管理系統(tǒng)

    房環(huán)境管理系統(tǒng)介紹采用VisualNet數(shù)據(jù)機房環(huán)境管理系統(tǒng)。VisualNet數(shù)據(jù)機房環(huán)境管理系統(tǒng)軟件是一套專業(yè)的機房(數(shù)據(jù)中心)資源管理及可視
    發(fā)表于 11-07 16:25

    圖形的電力通信資源管理系統(tǒng)的設(shè)計

    通信資源管理系統(tǒng)的軟件使用價值大大降低。就研制實施上述的資源管理系統(tǒng)來說,目前有以下兩種常見方式:一是利用VC、VB、Delphi 等開發(fā)工具從最底層起開發(fā)。這種
    發(fā)表于 12-23 13:56

    VisualNet可視的管網(wǎng)資源管理系統(tǒng)

    有別于常規(guī)的資源管理系統(tǒng)的開發(fā)需要經(jīng)歷:需求調(diào)研、數(shù)據(jù)結(jié)構(gòu)設(shè)計、代碼編寫、安裝調(diào)試、上線運行等過程,用戶所需要的數(shù)據(jù)都是軟件公司在開發(fā)過程中“寫死”在程序和數(shù)據(jù)庫中的,一旦用戶的需求發(fā)生變化,那么
    發(fā)表于 03-19 16:53

    圖形的管網(wǎng)資源管理系統(tǒng)功能簡介

    VisualNet系統(tǒng)基于實體對象、邏輯關(guān)系、業(yè)務(wù)數(shù)據(jù),采用圖形管理方式,解決廣電網(wǎng)絡(luò)資源管理中面臨的資源種類多、業(yè)務(wù)規(guī)則復(fù)雜、對象關(guān)系龐大的技術(shù)難題,是廣電網(wǎng)絡(luò)
    發(fā)表于 04-04 16:42

    WCDMA無線資源管理

    本課程介紹了無線資源管理的相關(guān)知識。首先通過對無線資源管理的總體介紹,讓大家對無線資源管理有了一個大體上的概念接著對無線資源管理的幾個方面:信道配置、
    發(fā)表于 06-01 16:02 ?5次下載

    網(wǎng)格資源管理模型研究

    文章分析了網(wǎng)格資源管理中的三種模型:傳統(tǒng)的資源管理,基于代理的資源管理和基于經(jīng)濟學(xué)的資源管理。以Globus 為例討論了傳統(tǒng)的資源管理方法;
    發(fā)表于 08-07 14:30 ?15次下載

    基于樹形的網(wǎng)格資源管理研究

    資源管理是計算機網(wǎng)格研究的基礎(chǔ)內(nèi)容之一。首先介紹了當前的主流網(wǎng)格資源管理模型,然后提出了一種新型的資源管理模型――基于樹形的網(wǎng)格資源管理模型。模型以代理作為基
    發(fā)表于 12-30 14:17 ?15次下載

    Hadoop的YARN資源管理系統(tǒng)

    本質(zhì)上是資源管理系統(tǒng)。YARN提供了資源管理資源調(diào)度等機制
    的頭像 發(fā)表于 03-15 17:00 ?2230次閱讀
    Hadoop的YARN<b class='flag-5'>資源管理</b>系統(tǒng)

    鴻蒙實戰(zhàn)開發(fā):【國際化部件】

    **國際化部件**為應(yīng)用提供了一系列國際化接口,包括:時間日期格式、數(shù)字格式、月份星期格式
    的頭像 發(fā)表于 03-21 22:07 ?319次閱讀
    <b class='flag-5'>鴻蒙</b>實戰(zhàn)<b class='flag-5'>開發(fā)</b>:【<b class='flag-5'>國際化</b>部件】

    OpenHarmony實例:【資源管理器】

    ,使用[@ohos.resourceManager.d.ts]中的接口,展示了格式字符串查詢、基于指定屏幕分辨率查詢媒體資源、獲取系統(tǒng)資源管理
    的頭像 發(fā)表于 04-09 15:10 ?456次閱讀
    OpenHarmony實例:【<b class='flag-5'>資源管理</b>器】

    鴻蒙開發(fā)接口資源管理:【@ohos.i18n (國際化-I18n)】

    本模塊首批接口從API version 7開始支持。后續(xù)版本的新增接口,采用上角標單獨標記接口的起始版本。
    的頭像 發(fā)表于 06-03 09:59 ?774次閱讀
    <b class='flag-5'>鴻蒙</b><b class='flag-5'>開發(fā)</b><b class='flag-5'>接口</b><b class='flag-5'>資源管理</b>:【@<b class='flag-5'>ohos</b>.i18n (<b class='flag-5'>國際化</b>-I18n)】
    RM新时代网站-首页