在文本文件中,我有以下文本。
add device 1: /dev/input/event7
name: "evfwd"
add device 2: /dev/input/event6
name: "aev_abs"
add device 3: /dev/input/event5
name: "light-prox"
add device 4: /dev/input/event4
name: "qtouch-touchscreen"
add device 5: /dev/input/event2
name: "cpcap-key"
add device 6: /dev/input/event1
name: "accelerometer"
add device 7: /dev/input/event0
name: "compass"
add device 8: /dev/input/event3
name: "omap-keypad"
我需要做的是,对于每个名称元素,我需要提取相应的事件编号并将它们放在哈希图上。
例如,从文本中我们看到名称evfwd与event7链接,因此 hashmap 将如下所示
<"evfwd", 7>
相似地
<"compass", 0>
如何有效地解析文本并在 java 中构建类似的 hashmap?