-1

谁能帮我使用下面的java代码编写php代码。

我撞到了某个地方,我有很多问题:

如何在php中编写java JFrame、BorderLayout、setJMenuBar、setVisible。

    // init the frame
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    this.setLayout(new BorderLayout());
    this.setSize(600, 400);
    // set MenuBar
    this.setJMenuBar(getApplicationMenuBar());
    // set ProgressBar
    this.add(getApplicationProgressBar(), BorderLayout.SOUTH);
    // set InfoPane
    this.add(getInfoPane(), BorderLayout.WEST);
    // set frame to visible
    this.setVisible(true);

请帮助我。

提前致谢。

4

1 回答 1

2

Swing 在 PHP 中不可用。PHP 语言根本不包含任何默认的 GUI。

于 2012-10-31T13:19:17.450 回答