Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 5
Đang chuẩn bị liên kết để tải về tài liệu:
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 5
Thiện Ân
83
31
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Một khách hàng có thể kết thúc một PUT và GET yêu cầu trong quá trình hoạt động bằng cách gọi phương pháp hủy bỏ (). Phương pháp hủy bỏ () sẽ gửi một yêu cầu hủy bỏ vào máy chủ | 106 Chapter Five OBEX input.close Verify that the whole object was received int responseCode op.getResponseCode op.close switch responseCode case ResponseCodes.OBEX_HTTP_OK return out.toByteArray case ResponseCodes.OBEX_HTTP_NOT_FOUND case ResponseCodes.OBEX_HTTP_NO_CONTENT Since nothing was found return null return null default throw new IOException Request Failed Figure 5.10 Phases of a GET operation. Programming with the API 107 A client can end a PUT and GET request during the operation by calling the abort method. The abort method sends an ABORT request to the server and signals to the server the request should not be processed. The abort method closes the Inputstream Outputstream and Operation object. If the operation has already ended the abort method throws an lOException. 5.3.4 Receiving a Request from a Client OBEX servers are similar to Java servlets once the transport layer connection is established. HTTP servlets extend HttpServlet OBEX servers extend the ServerRequestHandler class. Unlike HttpServlet the serverRequestHandler class does not require any methods to be overridden. OBEX servers need only to override the methods for the type of client requests the server would like to handle. For example if the OBEX server wants only to process CONNECT SETPATH and PUT requests the server needs only to override the onConnect onSet-Path and onPut methods. If the client makes a DELETE or GET request the implementation on the server side would automatically respond with the OBEX_HTTP_NOT_IMPLEMENTED response code. Table 5.2 shows how OBEX requests are received by an application and how the implementation will respond if the method is not overridden. The onConnect onDelete and onDisconnect methods allow servers to respond to OBEX CONNECT DELETE and DISCONNECT requests respectively. All three methods have two arguments. The Table 5.2 How OBEX Requests Are Translated to Methods by the JABWT Implementation OBEX Request ServerRequestHandler CONNECT onConnect SETPATH
TÀI LIỆU LIÊN QUAN
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVATM APIs ESSENTIALS EDITION
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 1
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 2
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 3
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 4
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 5
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 6
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 7
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 8
BLUETOOTH APPLICATION PROGRAMMING WITH THE JAVA APIS ESSENTIALS EDITION PHẦN 9
Đã 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.