avatar
Java练习题 6# Java - 爪哇娇娃
u*s
1
int i;
URL url = new URL("http://www.cnn.com");
BufferedInputStream in = new BufferedInputStream(url.openConnection(
).getInputStream());
while( (i=in.read())!=-1 )
{
System.out.print((char)i);
}
A. Compile error
B. Runtime error
C. print the text got from the URL
avatar
q*u
2
B,
少了try catch?

int i;
URL url = new URL("http://www.cnn.com");
BufferedInputStream in = new BufferedInputStream(url.openConnection(
).getInputStream());
while( (i=in.read())!=-1 )
{
System.out.print((char)i);
}
A. Compile error
B. Runtime error
C. print the text got from the URL

【在 u****s 的大作中提到】
: int i;
: URL url = new URL("http://www.cnn.com");
: BufferedInputStream in = new BufferedInputStream(url.openConnection(
: ).getInputStream());
: while( (i=in.read())!=-1 )
: {
: System.out.print((char)i);
: }
: A. Compile error
: B. Runtime error

avatar
u*s
3
ansume exception is handled correctly
avatar
q*u
4
那就是c了
c的文字写的也不好,应该是print the html context which is from URL
print the text got from the URL , http://www.cnn.com也算是一种歧义了。
你如果贴题的话,搞点awt的或者swing的

int i;
URL url = new URL("http://www.cnn.com");
BufferedInputStream in = new BufferedInputStream(url.openConnection(
).getInputStream());
while( (i=in.read())!=-1 )
{
System.out.print((char)i);
}
A. Compile error
B. Runtime error
C. print the text got from the URL

【在 u****s 的大作中提到】
: int i;
: URL url = new URL("http://www.cnn.com");
: BufferedInputStream in = new BufferedInputStream(url.openConnection(
: ).getInputStream());
: while( (i=in.read())!=-1 )
: {
: System.out.print((char)i);
: }
: A. Compile error
: B. Runtime error

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。