当前位置: 技术问答>java相关
关于URL
来源: 互联网 发布时间:2015-01-09
本文导语: 各位大侠,以下code为何不能得到正确data try { URL bookURL=new URL( "http://www.cartoonfree.com/index_home.htm") ; URLConnection uc = bookURL.openConnection() ; String line_str; DataInputStream book_is; book_is=new DataInputStream( uc.getInputStream() ) ;...
各位大侠,以下code为何不能得到正确data
try {
URL bookURL=new URL( "http://www.cartoonfree.com/index_home.htm") ;
URLConnection uc = bookURL.openConnection() ;
String line_str;
DataInputStream book_is;
book_is=new DataInputStream( uc.getInputStream() ) ;
while((line_str=book_is.readLine())!=null)
System.out.println(line_str);
book_is.close();
}
catch(MalformedURLException mfURLe)
{
System.out.println("MalformedURLException:"+mfURLe);
}
catch(IOException ioe)
{
System.out.println("IOException:"+ioe);
}
try {
URL bookURL=new URL( "http://www.cartoonfree.com/index_home.htm") ;
URLConnection uc = bookURL.openConnection() ;
String line_str;
DataInputStream book_is;
book_is=new DataInputStream( uc.getInputStream() ) ;
while((line_str=book_is.readLine())!=null)
System.out.println(line_str);
book_is.close();
}
catch(MalformedURLException mfURLe)
{
System.out.println("MalformedURLException:"+mfURLe);
}
catch(IOException ioe)
{
System.out.println("IOException:"+ioe);
}
|
是中文不能正确显示吧?
在论坛查找一下“中文”,很多人问过了的……
在论坛查找一下“中文”,很多人问过了的……
|
你的程序没问题啊,能运行的……不过不清晰,看这个例子吧:
try
{
URL myURL=new URL( "http://www.cartoonfree.com/index_home.htm") ;
BufferedReader bfr = new BufferedReader(new InputStreamReader(myURL.openStream()));
String line = null;
while ((line = bfr.readLine())!=null) System.out.println(line);
bfr.close();
}
catch(Exception ex)
{
System.out.println(ex);
}
try
{
URL myURL=new URL( "http://www.cartoonfree.com/index_home.htm") ;
BufferedReader bfr = new BufferedReader(new InputStreamReader(myURL.openStream()));
String line = null;
while ((line = bfr.readLine())!=null) System.out.println(line);
bfr.close();
}
catch(Exception ex)
{
System.out.println(ex);
}
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。