2

我想看看如何使用 Eclipse 创建一个 hello world java 桌面应用程序。我非常了解 Java,但我从未创建过 Java 桌面应用程序。如果有人能提供一个例子,那就太好了。谢谢!

4

2 回答 2

3

Swing 应用程序的基本元素是顶层JFrame(窗口)。我们将添加一个组件 (a ),以便在, 调用JLabel中有一些内容,以便布局组件,然后使框架可见。所有这些都包含在Java 应用程序的标准方法中,但对于真正的应用程序,您可能希望将代码组织到其他方法中,以免过于臃肿。JFramepack()main()main()

import javax.swing.JFrame;
import javax.swing.JLabel;

public class HelloWorld
{
    public static void main(String[] args)
    {
        JFrame hello = new JFrame("Hello World");
        hello.add(new JLabel("Hello World"));
        hello.pack();
        hello.setVisible(true);
    }
}
于 2012-07-09T19:21:39.863 回答
0

你的意思是用一个gui?大多数人会使用swing,它有一个eclipse插件来帮助构建swing ui。如果您不需要 gui,则只需创建一个类并在 main 方法中放置

    class HelloWorld{

public static void main(String args[]){

System.out.println("Hello World");

}//end main

}

然后编译代码

javac HelloWorld.java

然后运行你编译的代码

java HelloWorld

资源

于 2012-07-09T19:20:52.150 回答