java—在进行小程序编程时,它会显示一些注解,如

dldeef67  于 2021-06-29  发布在  Java
关注(0)|答案(0)|浏览(168)

注意:myapplet.java使用或重写不推荐使用的api。注意:重新编译-xlint:deprecation for 细节。我不明白它们是什么。我忽略并尝试运行appletviewer.html它显示错误“appletviewer”无法识别为内部或外部命令、可操作程序或批处理文件。请告诉我怎么解决??
下面是我的代码:myapplet.java文件

import java.applet.Applet;
    import java.awt.Graphics;
    public class MyApplet extends Applet
{
    public void paint(Graphics g)
    {
        g.drawString("HELLO WORLD!!",150,150);
    }
}

hello.html file
<html>
<head><title>hello</title>
<body>
<applet code="MyApplet.class" width="300" height="300">
</applet>
</body></html>

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题