| 您现在的位置: 先创网 >> 程序开发 >> JSP >> 文章正文 |
|
|
| whois in jsp (我在网上找的,充实一下这里) |
| rhzhi.net |
| 2005-4-13文/佚名 |
|
|
|
|
|
<%@page import="java.io.*,java.net.*"%>
<%
Socket whois=new Socket("whois.networksolutions.com",43);
InputStream in=whois.getInputStream();
DataOutputStream data_out=new DataOutputStream(whois.getOutputStream());
data_out.writeBytes("yahoo.com\r\n");
int d;
while(true){
d=in.read();
if(d<0)
break;
out.print((char)d);
}
data_out.close();
in.close();
%>
|
|
|
|
|
|
|
|
|
|