|
|
|
@ -57,22 +57,12 @@ public class Client {
|
|
|
|
|
BufferedReader in = new BufferedReader(
|
|
|
|
|
new InputStreamReader(socket.getInputStream(), Charset.forName("EUC-KR")))) {
|
|
|
|
|
|
|
|
|
|
// 서버로 메시지 전송
|
|
|
|
|
// String message = "클라이언트에서 보내는 메시지";
|
|
|
|
|
// out.write(message);
|
|
|
|
|
// out.newLine();
|
|
|
|
|
// out.write("-------------------------------------------------------------------");
|
|
|
|
|
// out.newLine();
|
|
|
|
|
// //
|
|
|
|
|
out.write(msg2);
|
|
|
|
|
out.newLine();
|
|
|
|
|
out.flush();
|
|
|
|
|
|
|
|
|
|
// 서버로부터 응답 받기 (EUC-KR -> UTF-8 변환)
|
|
|
|
|
String rtnMsg;
|
|
|
|
|
// while((rtnMsg = in.readLine()) != null){
|
|
|
|
|
// System.out.println("서버 응답 (EUC-KR로 읽어온 값): " + rtnMsg);
|
|
|
|
|
// };
|
|
|
|
|
//String responseUTF8 = new String(response.getBytes(Charset.forName("EUC-KR")), StandardCharsets.UTF_8);
|
|
|
|
|
//String responseUTF8 = new String(response.getBytes());
|
|
|
|
|
|
|
|
|
|