gpt4 book ai didi

java - java中是否有 "NameValueCollection"和 "CultureInfo"类的等价物?

转载 作者:行者123 更新时间:2023-12-02 09:48:58 24 4
gpt4 key购买 nike

我正在翻译 C# 代码,我想知道 Java 中是否有等效的代码。

我在互联网上搜索但没有找到答案。

private NameValueCollection m_objCommands;
private CultureInfo m_objCulture = new CultureInfo("en-US");

最佳答案

NameValueCollection 的定义是

Represents a collection of associated String keys and String values that can be accessed either with the key or with the index.

所以可以表示为Map<String, String>在 java 。存在相同的文档 here .

CultureInfo 的定义是

Provides information about a specific culture (called a locale for unmanaged code development).

所以可以表示为Locale在 java 。存在相同的文档 here .

关于java - java中是否有 "NameValueCollection"和 "CultureInfo"类的等价物?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56456500/

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