검색결과 리스트
글
안드로이드 기기 간에 Wifi Socket 통신하기
안드로이드/애플리케이션 제작
2015. 2. 8. 23:30
※해당 포스팅의 내용은 Java로 작성되어 있습니다. 본 내용을 Kotlin으로 다시 설계하여 보다 향상된 버전의 내용을 확인하고 싶으신 분들은 아래의 주소로 이동해주세요.
최근 사물인터넷이 주목을 받게 되면서 휴대전화 이외의 기기에 안드로이드 OS가 적용되는 사례가 증가하고 있습니다. 이로 인해 기존 휴대기기에서 사용되지 않던 안드로이드 Server라는 개념이 등장하기도 합니다. 이번 포스팅에서는 Wifi를 활용한 간단한 Wifi 통신에 대해 다루어볼까 합니다. 아래의 예제를 통해서 안드로이드 기기에서 Wifi socket 통신을 즐겨보는 기회를 가져보도록 하겠습니다.
먼저 AndroidMenifest.xml에 통신 관련 권한을 추가해 줍니다.
AndroidMenifest.xml
1 2 3 4 5 6 7 | <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" /> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> | cs |
string.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">FW</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="ip">IP</string> <string name="port">PORT</string> <string name="name">NAME</string> <string name="button1">Connect!</string> <string name="button2">Disconnect!</string> <string name="button3">Set Server!</string> <string name="button4">close Server!</string> <string name="button5">View info!</string> <string name="button6">Msg</string> </resources> | cs |
activity_main.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/textView1" android:layout_width="60dp" android:layout_height="wrap_content" android:text="@string/ip" /> <EditText android:id="@+id/editText1" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:hint="" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/textView2" android:layout_width="60dp" android:layout_height="wrap_content" android:text="@string/port" /> <EditText android:id="@+id/editText2" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:hint="" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <TextView android:id="@+id/textView3" android:layout_width="60dp" android:layout_height="wrap_content" android:text="@string/name" /> <EditText android:id="@+id/editText3" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:hint="" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="OnClick" android:text="@string/button1" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="OnClick" android:text="@string/button2" /> <Button android:id="@+id/button6" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="OnClick" android:text="@string/button6" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" > <Button android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="OnClick" android:text="@string/button3" /> <Button android:id="@+id/button4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="OnClick" android:text="@string/button4" /> <Button android:id="@+id/button5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="OnClick" android:text="@string/button5" /> </LinearLayout> <TextView android:id="@+id/textView4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView" /> </LinearLayout> | cs |
MainActivity.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | package com.example.fw; import android.app.Activity; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import android.os.Bundle; import android.os.Handler; import android.text.format.Formatter; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; import java.io.DataInputStream; import java.io.DataOutputStream; import java.net.ServerSocket; import java.net.Socket; public class MainActivity extends Activity { private EditText et1, et2, et3; private TextView tv4; private Socket socket; private DataOutputStream writeSocket; private DataInputStream readSocket; private Handler mHandler = new Handler(); private ConnectivityManager cManager; private NetworkInfo wifi; private ServerSocket serverSocket; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); et1 = (EditText) findViewById(R.id.editText1); et2 = (EditText) findViewById(R.id.editText2); et3 = (EditText) findViewById(R.id.editText3); tv4 = (TextView) findViewById(R.id.textView4); cManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); } @SuppressWarnings("deprecation") public void OnClick(View v) throws Exception { switch (v.getId()) { case R.id.button1: (new Connect()).start(); break; case R.id.button2: (new Disconnect()).start(); break; case R.id.button3: (new SetServer()).start(); break; case R.id.button4: (new CloseServer()).start(); break; case R.id.button5: wifi = cManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI); if (wifi.isConnected()) { WifiManager wManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); WifiInfo info = wManager.getConnectionInfo(); tv4.setText("IP Address : " + Formatter.formatIpAddress(info.getIpAddress())); } else { tv4.setText("Disconnected"); } break; case R.id.button6: (new sendMessage()).start(); } } class Connect extends Thread { public void run() { Log.d("Connect", "Run Connect"); String ip = null; int port = 0; try { ip = et1.getText().toString(); port = Integer.parseInt(et2.getText().toString()); } catch (Exception e) { final String recvInput = "정확히 입력하세요!"; mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } try { socket = new Socket(ip, port); writeSocket = new DataOutputStream(socket.getOutputStream()); readSocket = new DataInputStream(socket.getInputStream()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast("연결에 성공하였습니다."); } }); (new recvSocket()).start(); } catch (Exception e) { final String recvInput = "연결에 실패하였습니다."; Log.d("Connect", e.getMessage()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } } } class Disconnect extends Thread { public void run() { try { if (socket != null) { socket.close(); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast("연결이 종료되었습니다."); } }); } } catch (Exception e) { final String recvInput = "연결에 실패하였습니다."; Log.d("Connect", e.getMessage()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } } } class SetServer extends Thread { public void run() { try { int port = Integer.parseInt(et2.getText().toString()); serverSocket = new ServerSocket(port); final String result = "서버 포트 " + port + " 가 준비되었습니다."; mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(result); } }); socket = serverSocket.accept(); writeSocket = new DataOutputStream(socket.getOutputStream()); readSocket = new DataInputStream(socket.getInputStream()); while (true) { byte[] b = new byte[100]; int ac = readSocket.read(b, 0, b.length); String input = new String(b, 0, b.length); final String recvInput = input.trim(); if(ac==-1) break; mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } mHandler.post(new Runnable(){ @Override public void run() { // TODO Auto-generated method stub setToast("연결이 종료되었습니다."); } }); serverSocket.close(); socket.close(); } catch (Exception e) { final String recvInput = "서버 준비에 실패하였습니다."; Log.d("SetServer", e.getMessage()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } } } class recvSocket extends Thread { public void run() { try { readSocket = new DataInputStream(socket.getInputStream()); while (true) { byte[] b = new byte[100]; int ac = readSocket.read(b, 0, b.length); String input = new String(b, 0, b.length); final String recvInput = input.trim(); if(ac==-1) break; mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } mHandler.post(new Runnable(){ @Override public void run() { // TODO Auto-generated method stub setToast("연결이 종료되었습니다."); } }); } catch (Exception e) { final String recvInput = "연결에 문제가 발생하여 종료되었습니다.."; Log.d("SetServer", e.getMessage()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } } } class CloseServer extends Thread { public void run() { try { if (serverSocket != null) { serverSocket.close(); socket.close(); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast("서버가 종료되었습니다.."); } }); } } catch (Exception e) { final String recvInput = "서버 준비에 실패하였습니다."; Log.d("SetServer", e.getMessage()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } } } class sendMessage extends Thread { public void run() { try { byte[] b = new byte[100]; b = "Hello, World!".getBytes(); writeSocket.write(b); } catch (Exception e) { final String recvInput = "메시지 전송에 실패하였습니다."; Log.d("SetServer", e.getMessage()); mHandler.post(new Runnable() { @Override public void run() { // TODO Auto-generated method stub setToast(recvInput); } }); } } } void setToast(String msg) { Toast.makeText(this, msg, Toast.LENGTH_SHORT).show(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } } | cs |
※자신의 안드로이드기기를 Server로 설정하고 싶을떼
1.PORT에 자신이 설정하고자 하는 PORT 번호를 입력한다.
2.'Set Server!' 버튼을 누르면 해당 안드로이드 기기가 Server의 역할을 맡게 된다.
3.'View info!' 버튼을 눌러 해당 안드로이드 기기의 IP 주소를 확인한다.
※자신의 안드로이드 기기를 Client로 설정하고 싶을때
1.위에서 확인한 Server로 설정한 안드로이드 기기의 IP주소를 확인한 후 IP 칸에 해당 주소를 입력한다.
2.Server에서 설정한 Port 번호를 입력한다.
3.'Connect!'버튼을 눌러 접속을 시도한다.
300x250
'안드로이드 > 애플리케이션 제작' 카테고리의 다른 글
byte[] 바이트 배열을 socket을 통해 쉽게 전송하는 방법 (0) | 2015.10.03 |
---|---|
Handler와 Message를 활용하여 콜백함수 구현하기 (0) | 2015.08.24 |
USB를 연결한 후 Logcat이 바로 보이지 않을 때 해결방법 (0) | 2015.02.07 |
xml graphical layout가 정상적으로 동작하지 않을 때 (0) | 2015.02.05 |
XML의 Graphical Layout이 보이지 않는 경우 해결법 (0) | 2015.02.03 |