gpt4 book ai didi

java - TreeMap in TreeMap ,无法从第二个 map 获取值

转载 作者:行者123 更新时间:2023-12-01 09:48:52 27 4
gpt4 key购买 nike

我有这个任务。输入是

IP=192.23.30.40 message='Hello&derps.' user=destroyer
IP=192.23.30.41 message='Hello&yall.' user=destroyer
IP=192.23.30.40 message='Hello&hi.' user=destroyer
IP=192.23.30.42 message='Hello&Dudes.' user=destroyer
end

输出是:

child0: 
192.23.33.40 => 1.
child1:
192.23.30.40 => 1.
destroyer:
192.23.30.42 => 2.
mother:
FE80:0000:0000:0000:0202:B3FF:FE1E:8329 => 1.
unknown:
192.23.155.40 => 1.
yetAnotherUsername:
192.23.50.40 => 2.

基本上,我必须以格式打印每个用户的每个 IP 以及他们发送的消息数量

username: 
IP => count, IP => count… (last must be with dot in end)

问题是我不知道如何添加(代码trow异常中的第27行,也不知道为什么)+1到IP。以及如何捕获最后一个键的最后一个值。

package notReady;

import java.util.Scanner;
import java.util.TreeMap;

/**
* Created by Philip on 10-Jun-16.
*/
public class Problem09_02_UserLogs {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
TreeMap<String, TreeMap<String, Integer>> map = new TreeMap<>();

while (true) {
String in = scanner.nextLine();
if (in.equals("end")) {
break;
}
String[] input = in.split(" ");
String ip = input[0].replaceAll("IP=", "");
String user = input[2].replaceAll("user=", "");

if (!map.containsKey(user)) {
map.put(user, new TreeMap<>());
map.get(user).put(ip, 1);
}else {
Integer tempCount = (map.get(user).get(ip)) + 1;
map.get(user).put(ip, tempCount);
}
}

for (String person : map.keySet()) {
System.out.printf("%s: \n", person);
for (String ips : map.get(person).keySet()) {
System.out.printf("%s => %d.", ips, map.get(person).get(ips));
}
System.out.println();
}
}
}

这是下一个测试,这里一切正常。输入:

IP=FE80:0000:0000:0000:0202:B3FF:FE1E:8329 message='Hey&son' user=mother
IP=192.23.33.40 message='Hi&mom!' user=child0
IP=192.23.30.40 message='Hi&from&me&too' user=child1
IP=192.23.30.42 message='spam' user=destroyer
IP=192.23.30.42 message='spam' user=destroyer
IP=192.23.50.40 message='' user=yetAnotherUsername
IP=192.23.50.40 message='comment' user=yetAnotherUsername
IP=192.23.155.40 message='Hello.' user=unknown
end

输出:

destroyer:
192.23.30.40 => 2, 192.23.30.41 => 1, 192.23.30.42 => 1.

最佳答案

我必须猜测(我不会计算行数来查看第 27 行是什么),但它可能是这一行:Integer tempCount = (map.get(user).get(ip)) + 1 ;。看一下您的代码:上面 3 行将一个树状图放入 map 中,并以用户为键。然后你添加一些ip的计数。 但是如果该用户的下一个 IP 是不同的,您现在将尝试从映射中获取不存在的键的值并向其添加 1。

示例:

user = "ThomasGo"
ip1 = "1.2.3.4"

填写完 map 后,您将得到如下内容:

Map[key:"ThomasGo"->Map[key:"1.2.3.4"->1]]

现在以下调用应该成功:

Integer tempCount = map.get("ThomasGo").get("1.2.3.4") + 1;

但是,请考虑下一次调用使用不同的 ip,例如“2.2.2.2”:

Integer tempCount = map.get("ThomasGo").get("2.2.2.2") + 1;

由于内部映射不包含该 ip map.get("ThomasGo").get("2.2.2.2") 将返回 null。接下来,系统将尝试对 null 值进行拆箱,以便将其加 1,但拆箱失败并出现 NullPointerException。

要解决这个问题,您必须检查是否确实获得了 ip 的计数,如果没有,只需将 1 放入内部映射中即可。

示例:

Map<String, Integer> ipMap = map.get("ThomasGo");

//no map found for the username
if( ipMap == null ) {
//create a new inner map and put it into the outer map and keep the reference for further use
ipMap = new TreeMap<>();
map.put("ThomasGo", ipMap);
}

//check whether the ip is in the inner map
Integer ipCount = ipMap.get(ip);
if( ipCount == null) {
//no count in the map so just put 1
ipMap.put(ip, 1);
}
else {
//already a count in the map so overwrite it with count + 1
ipMap.put(ip, ipCount + 1);
}

And how to catch last value of last key.

这实际上很简单,至少如果我正确理解你的要求的话:你不需要。只需打印每个 ip 映射并在除第一个之外的所有 ip 映射之前添加一个逗号(您可以为此使用 boolean 标志),并在循环之后而不是 System.out.println(); 调用 System.out.println("."); 打印一个点,然后打印一个换行符。

关于java - TreeMap in TreeMap ,无法从第二个 map 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37748461/

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