Hello,
I have writen a client server application, when I send a request to the server from the client I get an output that looks like this "ÿûÿû ÿûÿû'ÿýÿûÿýt est" clearly this is odd. How do I remove the misc characters?
Secondly I have the following java code.
Thanks.
I have writen a client server application, when I send a request to the server from the client I get an output that looks like this "ÿûÿû ÿûÿû'ÿýÿûÿýt est" clearly this is odd. How do I remove the misc characters?
Secondly I have the following java code.
Code:
String test = "asdasdada {svr_id}";
test.replace("\\{svr_id\\}", "replace");
System.out.println(test);
Comment