Đang chuẩn bị liên kết để tải về tài liệu:
java programming language basics phần 8

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

Chương trình RMIClient1.java đượ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 RMIClient1.actionPerformed 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 developer.java.sun.com developer.ning Programming BasicJava2 serial.html The RMIClient1.java program is modified to use the DataOrder class to send the order data over the net. The RMiciientl.actionPerformed 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 event.getSource Integer applesNo peachesNo pearsNo num Double cost String number text text2 DataOrder order new DataOrder if source purchased order.cardnum creditCard.getText order.custID customer.getText order.apples appleqnt.getText order.peaches peachqnt.getText order.pears pearqnt.getText The total number of items is calculated using the order.icost field. if order.apples.length 0 try applesNo Integer.valueOf order.apples order.itotal applesNo.intValue catch java.lang.NumberFormatException e appleqnt.setText Invalid Value else order.itotal 0 The total number of items is retrieved from the order.itotal field and displayed in the user interface. num new Integer order.itotal text num.toString this.items.setText text Similarly the total cost is calculated and displayed in the user interface using the order.icost field. order.icost order.itotal 1.25 cost new Double order.icost text2 cost.toString this.cost.setText text2 try send.sendOrder order catch Exception e System.out.println 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 developer.java.sun.com developer.ning Programming BasicJava2 serial.html The Send.java and RemoteServer.java 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. Send.java import java.rmi.Remote

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.