쿠첸 CJB-BT0603IC 개봉기

 

밥솥을 알아보는 도중 어머니께서 좋은 것을 발견 하셨다.

 

"쿠첸 체험단 모집"

 

바로 신청했다.

 

몇일 후

메일이 왔고 어짜피 그렇게 큰건 필요없으니 6인용짜리 모델을 샀다.

 

 

집에 도착!

 

 

생각보다 사이즈는 아담했다.

 

10인용짜리를 살걸 그랬나... 하는 생각도 든다.

 

 

옆 모습.

 

 

뚜껑 열었을때.

 

개인 사정이 있어서 밥 짓는건 못 찍었는데

 

밥맛은 맛있었다.

 

만족한다.

Posted by LeeSh217
,

View Controller 에서


AppDelegate *delegate = [[UIApplication sharedApplication] delegate];

이렇게 작성하고 delegate로 쓰면 됨.

Posted by LeeSh217
,

android ip 구하기

Android 2012. 10. 5. 15:35

private static String getLocalIpAddress() {

        try {

            for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements();) {

                NetworkInterface intf = en.nextElement();

                for (Enumeration<InetAddress> enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements();) {

                    InetAddress inetAddress = enumIpAddr.nextElement();

                    if (!inetAddress.isLoopbackAddress()) {

                        if (inetAddress instanceof Inet4Address) {    //ipv4

                            Inet4Address inet4 = (Inet4Address) inetAddress;

                            String local_ip = inet4.getHostAddress();

                            if (inetAddress.isSiteLocalAddress()) {    // 내부망일때

                                return local_ip;

                            }

                        }else{    //ipv6

                            String local_ip = inetAddress.getHostAddress();

                            Log.d(TAG,"LocalIPv6 Address:"+local_ip);

                        }

                    }

                }

            }

        } catch (SocketException ex) {

            ex.printStackTrace();

        }

        return null;

    }



또는

WifiManager wm = (WifiManager)getSystemService(WIFI_SERVICE);

        WifiInfo wi = wm.getConnectionInfo();

        int ipAddr = wi.getIpAddress();

        String ip = String.format("%d.%d.%d.%d", 

                (ipAddr & 0xff),

                (ipAddr >> 8 & 0xff),

                (ipAddr >> 16 & 0xff),

                (ipAddr >> 24 & 0xff));

wifi off 일땐 0 리턴

'Android' 카테고리의 다른 글

xml animation 예제  (0) 2015.04.16
LayoutParams에서 dp 단위 쓰기  (0) 2015.04.08
File String path에서 Uri 뽑아내기  (0) 2015.03.03
freemp3fordroid  (0) 2014.04.25
Lock screen orientation  (0) 2013.11.07
Posted by LeeSh217
,