Page 486 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 486
정보통신기기 프로젝트
info = null;
//info 값을 초기화
buttonOn=true;
if (ipAdress.equals("") || ipAdress.equals("NULL")) {
//ip값이 없을경우
running = false;
// 실시간 통신 off로 설정
handler.sendEmptyMessage(2);
return;
} else {
try {
sock = new Socket(ipAdress, PORT);
//소켓을 열음
DataInputStream inputStream = new
DataInputStream(sock.getInputStream());
DataOutputStream outputStream = new
DataOutputStream(sock.getOutputStream());
byte[] out = new byte[buffersize];
//요청 메시지를 작성
String sendmsg = "!\r\n\r\n";
//getBytes로 String형을 byte형으로 변환
out = sendmsg.getBytes();
//Outputstream 객체에 보낼 데이터로 out을 넣음
outputStream.write(out);
// 보냄
outputStream.flush();
정보통신기기과
- 479 -