无为

无为则可为,无为则至深!

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  190 Posts :: 291 Stories :: 258 Comments :: 0 Trackbacks
import java.io.*;
import java.net.*;
public class test {
                public static void main(String args[]){
                  try{
                   URL u=new URL("http://127.0.0.1");
                   URLConnection uc=u.openConnection();
                   InputStream raw=uc.getInputStream();
                   InputStream buffer=new BufferedInputStream(raw);
                   //
                   Reader r=new InputStreamReader(buffer);
                   int c;
                   while((c=r.read())!=-1){
                          System.out.print((char) c);
                        } //end while
                  }//end try
                //catch (MalformedURLConnection e){
                //      System.err.println("cannot connect");
                //      }
                catch (IOException e){
                         System.err.println(e);
                        }// end catch
        }// end main
}//end test


凡是有该标志的文章,都是该blog博主Caoer(草儿)原创,凡是索引、收藏
、转载请注明来处和原文作者。非常感谢。

posted on 2005-12-14 13:07 草儿 阅读(1838) 评论(1)  编辑  收藏 所属分类: Java编程经验谈

Feedback

# re: 用Java得到当前网页的HTML源代码 2007-07-06 07:50 小陈
你可以把这段代码讲的再详细一些么,我是初学者,希望能够联系你 qq:283685878  回复  更多评论
  


只有注册用户登录后才能发表评论。


网站导航: