Java源码:URL编程
2008-04-09 03:59:57来源:互联网 阅读 ()
本文出自:www.chinajavaworld.com 作者: jdeveloper
Example 1 Below is a simple Java program which can get the hostname of a computer
from IP address. download now
Tips
1. Compile: javac GetHost
2. Run: java GetHost 111.111.111.1(your IP or others)
import java.io.*;
import java.net.*;
//
//
// GetHost.java
//
//
public class GetHost
{
public static void main (String arg[]){
if (arg.length>=1){
InetAddress[] Inet;
int i=1;
try{
for (i=1;i<=arg.length;i ){
Inet = InetAddress.getAllByName(arg[i-1]);
for (int j=1;j<=Inet.length;j ){
System.out.print(Inet[j-1].toString());
System.out.print("\n");
}
}
}
catch(UnknownHostException e){
System.out.print("Unknown HostName!" arg[i-1]);
}
}
else{
System.out.print("Usage java/jview GetIp ");
}
}
}
Example 2
download now
//GetHTML.java
/**
* This is a program which can read information from a web server.
* @version 1.0 2000/01/01
* @author jdeveloper
**/
import java.net.*;
import java.io.*;
public class GetHTML {
public static void main(String args[]){
if (args.length < 1){
System.out.println("USAGE: java GetHTML httpaddress");
System.exit(1);
}
String sURLAddress = new String(args[0]);
URL url = null;
try{
url = new URL(sURLAddress);
}catch(MalformedURLException e){
System.err.println(e.toString());
System.exit(1);
}
try{
InputStream ins = url.openStream();
BufferedReader breader = new BufferedReader(new InputStreamReader(ins));
String info = breader.readLine();
while(info != null){
System.out.println(info);
info = breader.readLine();
}
}
catch(IOException e){
System.err.println(e.toString());
System.exit(1);
}
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash