feat: NICE CI 전문 처리 반영

테스트를 위한 소켓 통신모듈 추가
dev
Jonguk. Lim 2 months ago
parent 3f0b367fd4
commit a5c8dbf21d

@ -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());

Loading…
Cancel
Save