gpt4 book ai didi

java - 具有字符串数组和整数数组值的 HashMap 不打印输出

转载 作者:行者123 更新时间:2023-12-01 09:13:16 24 4
gpt4 key购买 nike

我希望使用 Hashmap 打印数组的值和键...但我正在使用它获取 Adress。

 import java.io.FileReader;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map.Entry;

import java.util.Set;
import au.com.bytecode.opencsv.CSVReader;
import java.util.Arrays;
import java.util.Collection;

public class ArrayHash

{
public static void main(String args[]) throws IOException
{
int[] WorkingDay=new int[13];
int i=0;
String[] Name=new String[13];
String file="C:\\Users\\Dhananjay Kumar\\Empdetail\\Detail.csv";
HashMap<String[],int[]> hashfunc=new HashMap<String[],int[]>();
CSVReader reader=new CSVReader(new FileReader(file));
String[] read;
while((read = reader.readNext()) !=null)
{
WorkingDay[i]=Integer.parseInt(read[2]);
Name[i]=read[0];
i++;
}
hashfunc.put(Name,WorkingDay);
hashfunc.get(Name);
Set<Entry<String[], int[]>> entrySet = hashfunc.entrySet();
for (Entry entry : entrySet)
{
System.out.println("key: " + entry.getKey() + " value: " + entry.getValue());
}
}
}

最佳答案

用途:

System.out.println("key: " + entry.getKey() + " value: " + Arrays.toString(entry.getValue()));  

关于java - 具有字符串数组和整数数组值的 HashMap 不打印输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40781886/

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