I am probably making a small mistake here but I am not sure. I am trying to send a message class through a socket, and I am positive that I am sending it properly because when I send only a HashMap through there are not any problems. But when the HashMap is a member of the Message class than for some reason once the Message is received there is nothing in it. I would also like to say that the String within the class is fine after being serialized so it is only the HashMap and only when it is a member of the Message class.
The Message class is below.
import java.io.Serializable;
import java.util.HashMap;
public class Message implements Serializable{
private String id;
private HashMap<String, String> map;
//Constructor
public Message(){
id = "nothing";
map = new HashMap<String, String>();
}
public void setId(String id){
this.id = id;
}
public String getId(){
return id;
}
public void putMap(String key, String value){
map.put(key, value);
}
public HashMap<String, String> getMap(){
return map;
}
}
EDIT:
I did what @mykhaylo said, I was using an instance of the Message class that I had used before and it was screwing things up, figured it out, thanks!