当前位置: 技术问答>java相关
怎么回事,,,帮帮菜鸟我。。。
来源: 互联网 发布时间:2015-07-11
本文导语: 源代码: import java.io.*; import java.net.*; import java.awt.*; import java.applet.*; public class showfile extends Applet{ URL fileur; TextArea showarea = new TextArea("Please wait a while for get text",10,70); public void init() { S...
源代码:
import java.io.*;
import java.net.*;
import java.awt.*;
import java.applet.*;
public class showfile extends Applet{
URL fileur;
TextArea showarea = new TextArea("Please wait a while for get text",10,70);
public void init() {
String url = "http://www.sina.com.cn/index.htm";
try { fileur = new URL(/tech-qa-java/url/index.html); }
catch ( MalformedURLException e) {
System.out.println("Can′t get URL: " );
}
add(showarea);
}
public void paint(Graphics g) {
InputStream filecon = null;
DataInputStream filedata = null;
String fileline;
try {
filecon = fileur.openStream();
filedata = new DataInputStream(filecon);
while ((fileline = filedata.readLine()) != null) {
showarea.appendText(fileline+"n");
}
}
catch (IOException e) {
System.out.println("Error in I/O:" + e.getMessage());
}
}
}
命令行:
D:j2sdk1.4.0-beta3bin>javac d:javashowfile.java
Note: d:javashowfile.java uses or overrides a deprecated
Note: Recompile with -deprecation for details.
import java.io.*;
import java.net.*;
import java.awt.*;
import java.applet.*;
public class showfile extends Applet{
URL fileur;
TextArea showarea = new TextArea("Please wait a while for get text",10,70);
public void init() {
String url = "http://www.sina.com.cn/index.htm";
try { fileur = new URL(/tech-qa-java/url/index.html); }
catch ( MalformedURLException e) {
System.out.println("Can′t get URL: " );
}
add(showarea);
}
public void paint(Graphics g) {
InputStream filecon = null;
DataInputStream filedata = null;
String fileline;
try {
filecon = fileur.openStream();
filedata = new DataInputStream(filecon);
while ((fileline = filedata.readLine()) != null) {
showarea.appendText(fileline+"n");
}
}
catch (IOException e) {
System.out.println("Error in I/O:" + e.getMessage());
}
}
}
命令行:
D:j2sdk1.4.0-beta3bin>javac d:javashowfile.java
Note: d:javashowfile.java uses or overrides a deprecated
Note: Recompile with -deprecation for details.
|
你使用了旧 java Api。提示告诉你使用 javac d:javashowfile.java -deprecation 可以看见那里使用了。
|
第2个问题是:可能是你用的是ie5.0以上的版本,微软在ie5.0以上不在支持java,解决办法是你装一个jdk1.4旧可以了,在jdk1.4里面有一个java web
start,能解决这个问题。
|
Note: d:javashowfile.java uses or overrides a deprecated
Note: Recompile with -deprecation for details.
这个提示不用理它,它并不是说你错了,是说你用了sun不再支持的API,但这个API还可以用,不影响你的程序的运行
Note: Recompile with -deprecation for details.
这个提示不用理它,它并不是说你错了,是说你用了sun不再支持的API,但这个API还可以用,不影响你的程序的运行