I'm writing a simple Client-Server protocol in java and am dealing with the server CLI right now. What I want to do is have a > at the beginning of the user input line. The function I have that prints the > character in console is consoleWriteln:
public static void consoleWriteln(String message) {
System.out.println(message);
System.out.print(">");
}
With this function, the server starts, but the character is displayed at the beginning of EVERY line.
Server running, listening on port 25565
>Tim has connected
>Boom
Server: Boom
>That's nice
Server: That's nice
>Tim: I agree!
>
The above function is called when anything comes in from a client, or something is broadcast from the server CLI.
How can I go about only having it on the user input line? IE:
Server running, listening on port 25565
Tim has connected
>Boom
Server: Boom
>That's nice
Server: That's nice
Tim: I agree!
>
>? – SLaks Nov 22 '12 at 0:12>character. Any other line should have no character preceding it. – Timr Nov 22 '12 at 0:13