本文介绍了直接运行Java的小应用程序(不包括HTML页面)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个问题。
我怎么能不嵌在我的网页直接运行我的Java小程序?
How i can run my java-applet directly without embedded in my web page?
我知道appletViewr没有浏览器可以执行的小程序,但我需要获得Java小程序没有html页面。
I know appletViewr can execute applet without a browser but I need to get java applet without html page.
推荐答案
使用低于code用code,其中AppletClass是你的Applet类。
Use below code with your code, where AppletClass is your Applet class.
AppletClass appletClass = new AppletClass ();
JFrame frame = new JFrame();
frame.setLayout(new GridLayout(1, 1));
frame.add(appletClass );
// Set frame size and other properties
...
// Call applet methods
appletClass .init();
appletClass .start();
frame.setVisible(true);
更多的定制可以根据需要进行。
More customizations can be done as required.
这篇关于直接运行Java的小应用程序(不包括HTML页面)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!