Page 475 - 2
P. 475

public Point_info getNext_Points() {...}

               public void setNext_Points(Point_info next_Points) {...}


               public static long getSerialversionuid() {...}

               public String getGPS_speed() {...}


               public void setGPS_speed(String GPS_speed) {...}


               public String getMessage() {...}

               public void setMessage(String message) {...}


               public String getW_City() {...}

               public void setW_City(String w_City) {...}


               public String getW_Pub() {...}


               public void setW_Pub(String w_Pub) {...}

               public String getW_Tmp() {...}


               public void setW_Tmp(String w_Tmp) {...}

               public String getW_wf() {...}


               public void setW_wf(String w_wf) {...}
            }
            <Data_Manager>
            package com.example.dbstp.mdp_2;
            //import  생략
            public class Data_Manager implements Runnable{
                    private final InputStream in;

                    public Data_Manager(StreamConnection conn){
                            InputStream tmpin = null;
                            try {
                                    tmpin = conn.openInputStream();
                            } catch (IOException e) {
                                    HUD.Log(" 스트림생성중 오류가 발생했습니다." + e.getMessage());
                            }
                            in = tmpin;

                    }
                    public void run(){
                            try {
                                    while(true){
                                            ObjectInputStream oin = new ObjectInputStream(in);


                                                         - 475 -
   470   471   472   473   474   475   476   477   478   479   480