Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
Did you get any exception? – user948620 Jan 27 at 1:17
4  
There is nothing in the code you quoted that suggests there would be a problem serialising it. Can you post a complete example that actually reproduces your problem? – Elias Mårtenson Jan 27 at 1:17
1  
Try to serialize one message to file and deserialize it. If everything OK, then this is not a problem with serialization. For me it looks OK - probably you have a mistake in other piece of your source code. Example source code how to serialize/deserialize objects you can find on: tutorialspoint.com/java/java_serialization.htm – mykhaylo Jan 27 at 1:29

closed as too localized by EJP, A--C, Stephen C, Sudarshan, j0k Jan 27 at 11:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.