TAILIEUCHUNG - C++ Timesaving Techniques for Dummies phần 8

World Wide Web đã mang theo nó một loạt các cơ hội mới và một loạt các vấn đề mới. Hầu hết các ứng dụng trong những ngày này cần phải được trang web cho phép làm việc trực tiếp với các trình duyệt web hoặc các ứng dụng Web. | Encoding and Decoding Data Technique for tlle Web Save Time By Interfacing with the Internet The World Wide Web has brought with it a host of new opportunities and a host of new problems. Most applications these days need to be Web-enabled to work directly with Web browsers or Web appli- Encoding and decoding URLs for use on the Internet cations. No matter what kind of application you re developing odds are that the application will have to interact with the Web or with remote systems that use Web protocols. Creating a URL Codec class Testing that class The biggest issue in interfacing with the Internet is that of encoding. Encoding is the process of translating characters that cannot be directly used by a system into characters that can. For the World Wide Web for example characters such as the ampersand greater- and less- than signs and and others cannot be directly used. We need to change them into a form that the Web can use. The Web identifies addresses with a Uniform Resource Locator better known as a URL. One of the rules of working with URLs is that they cannot contain characters such as spaces and slashes because including them would break many existing browser applications and operating systems. Browsers assume that spaces and slashes indicate breaks in a URL which is the standard format for Web addresses. There is no way to change the browser so we must change the string. The problem is that the C library offers no standard way to encode and decode URL strings. The technique for encoding and decoding is well known but it is new enough that it has not yet made it into the STL or standard C library. For this reason we end up reimplementing the code in each and every application that we write that needs the functionality. This is contrary to the C principle of write once reuse many times. Saving time is often about anticipating the needs of your application and planning for them in advance. By planning to Web-enable your code regardless of whether you .

TỪ KHÓA LIÊN QUAN
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.