tailieunhanh - java programming language basics phần 8

Chương trình được sửa đổi để sử dụng lớp DataOrder để gửi dữ liệu thứ tự trên mạng. Các phương pháp tạo ra một thể hiện của lớp DataOrder và khởi tạo các lĩnh vực của nó với các dữ liệu để lấy ra từ các lĩnh vực giao diện người sử dụng văn bản và các khu vực. | Java TM Language Basics Part 2 Lesson 4 Serialization http Programming BasicJava2 The program is modified to use the DataOrder class to send the order data over the net. The method creates an instance of the DataOrder class and initializes its fields with order data retrieved from the user interface text fields and areas. public void actionPerformed ActionEvent event Object source Integer applesNo peachesNo pearsNo num Double cost String number text text2 DataOrder order new DataOrder if source purchased The total number of items is calculated using the field. if 0 try applesNo catch e Invalid Value else 0 The total number of items is retrieved from the field and displayed in the user interface. num new Integer text text Similarly the total cost is calculated and displayed in the user interface using the field. cost new Double text2 text2 try order catch Exception e Cannot send data to server After the totals are calculated the order object is sent over the net to the server program. Server Program 2 of 5 21-04-2000 17 34 Java TM Language Basics Part 2 Lesson 4 Serialization http Programming BasicJava2 The and classes are much simpler in this lesson. They have one getxxx method that returns an instance of DataOrder and one setxxx method that accepts an instance of DataOrder. import

TỪ KHÓA LIÊN QUAN