Page 517 - 3-2
P. 517

fos.close();


                        }catch(IOException e){
                            e.printStackTrace();
                        }
                        return bm;
                    }


                    protected void onPostExecute(Bitmap img){
                        imView.setImageBitmap(bm);
                    }
                }
            }


                3) App manifest 소스 <AndroidManifest.xml>
            <?xml version="1.0" encoding="utf-8"?>
            <manifest xmlns:android="http://schemas.android.com/apk/res/android"
                package="kr.icehs.intec.client" >


                <application
                    android:allowBackup="true"
                    android:icon="@mipmap/ic_launcher"
                    android:label="@string/app_name"
                    android:roundIcon="@mipmap/ic_launcher_round"
                    android:supportsRtl="true"
                    android:theme="@style/AppTheme" >
                    <activity android:name=".MainActivity" >
                        <intent-filter>
                            <action android:name="android.intent.action.MAIN" />


                            <category android:name="android.intent.category.LAUNCHER" />
                        </intent-filter>
                    </activity>
                </application>


                <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


                <uses-permission android:name="android.permission.INTERNET" />


            </manife>


            ==================================================================


              라 웹서버 구축.      html  소스
            <html>


                                                         - 517 -
   512   513   514   515   516   517   518   519   520   521   522