Javaプロパティファイルがあり、KEY
としてORDER
があります。そのため、そのVALUE
のKEY
を取得します_以下のようにプロパティファイルを読み込んだ後にgetProperty()
メソッドを使用します。
String s = prop.getProperty("ORDER");
それから
s ="SALES:0,SALE_PRODUCTS:1,EXPENSES:2,EXPENSES_ITEMS:3";
上記の文字列からHashMapを作成する必要があります。 SALES,SALE_PRODUCTS,EXPENSES,EXPENSES_ITEMS
はHashMapのKEY
および0,1,2,3,
はVALUE
sのKEY
sでなければなりません。
ハードコードされている場合、次のようになります:
Map<String, Integer> myMap = new HashMap<String, Integer>();
myMap.put("SALES", 0);
myMap.put("SALE_PRODUCTS", 1);
myMap.put("EXPENSES", 2);
myMap.put("EXPENSES_ITEMS", 3);
String.split()
メソッドを_,
_セパレータとともに使用して、ペアのリストを取得します。ペアを繰り返し、split()
を_:
_区切り文字で再度使用して、各ペアのキーと値を取得します。
_Map<String, Integer> myMap = new HashMap<String, Integer>();
String s = "SALES:0,SALE_PRODUCTS:1,EXPENSES:2,EXPENSES_ITEMS:3";
String[] pairs = s.split(",");
for (int i=0;i<pairs.length;i++) {
String pair = pairs[i];
String[] keyValue = pair.split(":");
myMap.put(keyValue[0], Integer.valueOf(keyValue[1]));
}
_
Guava'sSplitter.MapSplitter でそれを行うことができます:
Map<String, String> properties = Splitter.on(",").withKeyValueSeparator(":").split(inputString);
一行で:
_HashMap<String, Integer> map = (HashMap<String, Integer>) Arrays.asList(str.split(",")).stream().map(s -> s.split(":")).collect(Collectors.toMap(e -> e[0], e -> Integer.parseInt(e[1])));
_
詳細:
1)エントリペアを分割し、文字列配列を_List<String>
_から_Java.lang.Collection.Stream
_ APIを使用するために_Java 1.8
_に変換します
_Arrays.asList(str.split(","))
_
2)結果の文字列リスト_"key:value"
_を[0]をキー、[1]を値として文字列配列にマッピングします
_map(s -> s.split(":"))
_
3)ストリームAPIのcollect
ターミナルメソッドを使用して変換します
_collect(Collector<? super String, Object, Map<Object, Object>> collector)
_
4)Collectors.toMap()
静的メソッドを使用して、2つの関数を使用して、入力タイプからキーおよび値タイプへの変換を実行します。
_toMap(Function<? super T,? extends K> keyMapper, Function<? super T,? extends U> valueMapper)
_
ここで、Tは入力タイプ、Kはキータイプ、Uは値タイプです。
5)ラムダ変異String
からString
キーおよびString
からInteger
値に続く
_toMap(e -> e[0], e -> Integer.parseInt(e[1]))
_
_Java 8
_。でストリームとラムダスタイルをお楽しみくださいこれ以上のループはありません!
','
または':'
:
Map<String, Integer> map = new HashMap<String, Integer>();
for(final String entry : s.split(",")) {
final String[] parts = entry.split(":");
assert(parts.length == 2) : "Invalid entry: " + entry;
map.put(parts[0], new Integer(parts[1]));
}
com.fasterxml.jackson.databind.ObjectMapper
(Mavenリポジトリリンク: https://mvnrepository.com/artifact/com.fasterxml.jackson.core )を使用することをお勧めします
final ObjectMapper mapper = new ObjectMapper();
Map<String, Object> mapFromString = new HashMap<>();
try {
mapFromString = mapper.readValue(theStringToParse, new TypeReference<Map<String, Object>>() {
});
} catch (IOException e) {
LOG.error("Exception launched while trying to parse String to Map.", e);
}
StringTokenizerを使用して、文字列を解析します。
String s ="SALES:0,SALE_PRODUCTS:1,EXPENSES:2,EXPENSES_ITEMS:3";
Map<String, Integer> lMap=new HashMap<String, Integer>();
StringTokenizer st=new StringTokenizer(s, ",");
while(st.hasMoreTokens())
{
String [] array=st.nextToken().split(":");
lMap.put(array[0], Integer.valueOf(array[1]));
}
あなたはそれを行うために分割を使用することができます:
String[] elements = s.split(",");
for(String s1: elements) {
String[] keyValue = s1.split(":");
myMap.put(keyValue[0], keyValue[1]);
}
それにもかかわらず、私自身はグアバベースのソリューションに行きます。 https://stackoverflow.com/a/10514513/135688
Json.orgのJSONObjectクラスを使用して、HashMapを適切にフォーマットされたJSON文字列に変換することもできます。
例:
Map<String,Object> map = new HashMap<>();
map.put("myNumber", 100);
map.put("myString", "String");
JSONObject json= new JSONObject(map);
String result= json.toString();
System.out.print(result);
結果:
{'myNumber':100, 'myString':'String'}
あなたもそれからキーを得ることができます
System.out.print(json.get("myNumber"));
結果:
100
String mapString=hasmap.toString();
Pattern p = Pattern.compile("[\\{\\}\\=\\, ]++");
String[] split = p.split(mapString);
詳細については、 こちら をクリックしてください
試してみる
String s = "SALES:0,SALE_PRODUCTS:1,EXPENSES:2,EXPENSES_ITEMS:3";
HashMap<String,Integer> hm =new HashMap<String,Integer>();
for(String s1:s.split(",")){
String[] s2 = s1.split(":");
hm.put(s2[0], Integer.parseInt(s2[1]));
}