テキストファイルには、次のテキストがあります。
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にリンクされていることがわかるため、ハッシュマップは次のようになります
<"evfwd", 7>
同様に
<"compass", 0>
テキストを効率的に解析し、Java でそのようなハッシュマップを作成するにはどうすればよいですか?