Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am implementing a client server application. from the server i am sending a String array, and now i want to read whats in that string array from my client code. How can i do this;

When i print the value from the client i get the output something like [Ljava.lang.String;@120d10

server:

try {
                    PrintWriter r= (PrintWriter) i.next();

                    String[] s={"f","ff"};
                    r.println(s);

                    r.flush();
                } catch (Exception ex) {

                }

client:

try {
                    while ((somestring= r.readLine()) != null) {
                        //When i print it i get something like [Ljava.lang.String;@120d10


                    }
                } catch (Exception ex) {}
share|improve this question

4 Answers

up vote 1 down vote accepted

You're trying to println the array of strings, instead of each string in the array. Try something like this on the server:

    try {
                PrintWriter r= (PrintWriter) i.next();

                String[] s={"f","ff"};
                for(String sElement : s)
                {
                    r.println(sElement);
                    r.flush();
                }

            } catch (Exception ex) {

            }
share|improve this answer

When you print an array, it call toString() on it first. The default toString() for an array prints the type @ hashCode which is generally useless.

What you intended was something like

String[] arr={"f","ff"};
for(String s: arr)
    r.println(s);
share|improve this answer

r.println(object) calls object.toString() to know what to print. The arrays stringTo() method return just that value ([L means you are dealing with an array).

If you want to print all the array, loop it.

for(String  str : s) {
  r.println(str + delimiter);
}

Of course, you will have to find a valid delimiter (one that does not appear inside your strings).

share|improve this answer

You should consider using ObjectOutputStream / ObjectInputStream instead. Then you can send all kinds of Serializable objects (including arrays) directly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.