Java Network Programming, 3rd Edition(笔记)

第一章
      介绍java做为网络应用的好处,简要介绍了其安全性

第二章
     现代网络基本上基于存储转发机制;
     协议是定义计算机通信的规则;
     tcp/ip四层结构;  


第三章
uri:   
协议部分可以是of lowercase letters, digits, and the plus sign, period, and hyphen.
 (authority, path, and query) 可以是ASCII alphanumeric characters; that is, the letters A-Z, a-z, and the digits 0-9. In addition, the punctuation characters - _ . ! ~ * ' may also be used,不能表示的用unicode的utf-8标志,%
如:Java I/O写成Java%20I%2FO

uri分为两种:url和urn。和internet有关的叫url,其他的叫urn。urn的格式urn:namespace:resource_name

HTML,XML,SGML之间的关系;

http的过程:连接,请求,应答,断开;
1。1与1。0的改进:连接重用;


MIME stands for Multipurpose Internet Mail Extensions
原文地址:https://www.cnblogs.com/goodloop/p/74611.html