龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > JAVA开发 >

Java URL编程

时间:2009-12-23 15:42来源:未知 作者:admin 点击:
分享到:
importJava.io.*; importjava.net.*; // // //GetHost.java // // publicclassGetHost { publicstaticvoidmain(Stringarg[]){ if(arg.length=1){ InetAddress[]Inet; inti=1; try{ for(i=1;i=arg.length;i++){ Inet=InetAddress.getAllByName(arg[i-1]); for(

  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(" ");
   }
   }
   }
   catch(UnknownHostException e){
   System.out.print("Unknown HostName!"+arg[i-1]);
   }
   }
    else{
   System.out.print("Usage java/jview GetIp <hostname>");
    }
   }
  }
  </pre>
  </p>
  <p>
  <pre>
  <font color=red>Example 2</font>
  <a href="GetHtml.java">download now</a>
  //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){
  
精彩图集

赞助商链接