Player play = (Player) _players.elementAt(i);
dos.writeInt(play.getNumber());
dos.writeInt(play.getScore());
char[] name = play.getPseudo().toCharArray();
for (int j = 0; j < play.getPseudo().length(); j++) {
dos.writeChar(name[j]);
}
if (play.getPseudo().length() < 5) {
for (int j = play.getPseudo().length(); j < 5; j++) {
dos.writeChar(' ');
}