javac编译能成功 但用Java就是运行不了这是为什么?
发布网友
发布时间:2022-05-14 07:31
我来回答
共4个回答
热心网友
时间:2023-10-09 21:59
你好,java applet小程序是不能直接用java xxx这种命令运行的。
运行方式如下:
比如你文件叫HelloWorld .java
编译为HelloWorld .class
写一个html叫HelloWorld .html
内容为
<html>
<applet>code="HelloWorld .class"
width="200"
height="200"
</applet>
</html>
然后在命令行方式进入上述文件所在文件夹
打命令appletviewer HelloWorld .html 运行即可
还不会可以联系我
热心网友
时间:2023-10-09 21:59
运行命令
java HelloWorld
热心网友
时间:2023-10-09 22:00
这个是applet程序,不是main函数的,编译后不能使用java命令运行,应该是用appletviewer 来运行Applet ;
你需要建立一个html文件来运行小程序
如下
<html>
<head>
<title> A Simple Program</title>
</head>
<body>
<hr/>
<applet code="HelloWorld.class" width=300 height=200>
</applet>
<ht/>
</body>
</html>
保存为 AppletHelloWorld.html
必须保证其与
HelloWorld.java
HelloWorld.class
这两个文件在同一个文件夹下
然后输入命令:
appletviewer AppletHelloWorld.html
热心网友
时间:2023-10-09 22:00
applet要嵌入到网页中才能运行,给你两种方法:
首先,编译运行applet程序的步骤,以你的为例
javac HelloWorld.java // 编译过程
编译完成后会出现HelloWorld.class文件
然后,你要新建一个html(或者htm)格式的网页,比如最简单的把下面给的代码保存到一个txt文件,然后更改格式为HelloWorld.html就可以了
<applet code="HelloWorld.class" WIDTH=200 HEIGHT=150>
</applet>
注意这个网页要保证跟你生成的HelloWorld.class文件在同一个目录下
最后你有两种方法运行
1.直接双击网页运行
2.命令行中appletviewer HelloWorld.html // 运行
一定要注意的是这里要讲html文件和.class文件放到同一个目录下
祝好:)
楼上只给出了一种方法其实双击运行网页也是不错的选择哇
哈哈哈