I am storing a data in HashMap and getting the value in later stage.
HashMap<String, byte[]> hm = new HashMap<String, byte[]>();
Now, I want to store two more values into it. For example, I want to store info like below. Could someone please advise me, how can i modify the Hashmap to ahieve this way? I also require to read all these stored values and find some value from it in later stage.
Key 1
IPAddress
RandomNumber
Byte data
Key 2
IPAddress
RandomNumber
Byte data
Thank you!