16.1.html
来自「翁剀JAVA语言那门课程的教案 很多人都看多他的视频教程可惜没有ppt的教案」· HTML 代码 · 共 22 行
HTML
22 行
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Author" CONTENT="Weng Kai">
<TITLE>Identifying a machine</TITLE>
</HEAD>
<BODY>
<H2>16.1 Identifying a machine</H2>
<HR WIDTH="100%">
IP (Internet Protocol) address can exist in two forms:
<ol>
<li>The familiar DNS (Domain Name Service) form. My domain name is bruceeckel.com, so suppose I have a computer called Opus in my domain. Its domain name would be Opus.bruceeckel.com. This is exactly the kind of name that you use when you send email to people, and is often incorporated into a World-Wide-Web address.</li>
<li>Alternatively, you can use the "dotted quad" form, which is four numbers separated by dots, such as 123.255.28.120.</li>
</ol>
You can get a special Java object to represent this number from either of the forms above by using the static InetAddress.getByName( ) method that's in java.net.
<br>
Case Study:<a href=case/WhoAmI.java>WhoAmI.java</a>
<HR WIDTH="100%">
<DIV ALIGN=right><A HREF="16.2.html">Next Page</A></DIV>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?