The diagram is incorrect (and is listed in the unconfirmed errata on the O'Reilly site).
The client chooses its port at random (you don't need to do anything special in Java) and connects to the server on whichever port you specified. Using the netstat command-line tool you can see this - first, just the listening server socket with no clients:
simon@lucifer:~$ netstat -n -a
Active Internet connections (including servers)
Proto Recv-Q Send-Q Local Address Foreign Address (state)
...
tcp46 0 0 *.5050 *.* LISTEN
...
(there are lots of other entries, I've just removed the unrelated ones)
Now with 1 client connecting from the local host (127.0.0.1):
simon@lucifer:~$ netstat -n -a
Active Internet connections (including servers)
Proto Recv-Q Send-Q Local Address Foreign Address (state)
...
tcp4 0 0 127.0.0.1.64895 127.0.0.1.5050 ESTABLISHED <- 1
tcp4 0 0 127.0.0.1.5050 127.0.0.1.64895 ESTABLISHED <- 2
tcp46 0 0 *.5050 *.* LISTEN <- 3
...
Since the client is connecting from the same machine, we see two established connections - one from client to server (1), the other from server to client (2). They have opposite local and foreign addresses (since they're talking to each other) and you can see the server-end is still using port 5050 while the original server socket (3) continues to listen on the same port.
(these are from the Mac, but Windows/Linux also have netstat giving similar output)