whois in jsp (我在网上找的,充实一下这里)
来源:岁月联盟
时间:2006-05-21
<%
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();
%>
编辑:xker.com
上一篇:实现打字机效果的程序
下一篇:Java Socket编程(五)