• 大小: 581KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-06
  • 语言: Java
  • 标签: java  javafx  

资源简介

有需要使用java开发客户端的,可使用该项目,该项目使用javafx实现用web技术开发客户端,该例子仅供参考学习使用。

资源截图

代码片段和文件信息

package sample;

import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public abstract class baseController {

    private Stage primaryStage;

    /**
     * 自定义实现
     * @param primaryStage
     */
    public void Init(Stage primaryStage Parent root)
    {
        if (primaryStage == null) {
            return;
        }
        this.primaryStage = primaryStage;
        primaryStage.settitle(gettitle());
        primaryStage.setResizable(isResizable()); // 禁止自由拉伸窗口

        Scene scene = new Scene(root 1300 800);
        primaryStage.setScene(scene);

        primaryStage.show(); // 显示
    }

    /**
     * 获取from title
     * @return
     */
    public String gettitle() {
        return “MyFrom“;
    }

    /**
     * 禁止自由拉伸窗口(禁止后不能最大化)
     * @return 默认禁止,否则为true
     */
    public boolean isResizable() {
        return false;
    }

    /**
     * 关闭当前窗口
     */
    public void close() {
        if (primaryStage != null) {
            primaryStage.close();
            primaryStage = null;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-29 16:28  WebViewTest\
     目录           0  2018-05-29 20:04  WebViewTest\.idea\
     目录           0  2018-05-26 18:34  WebViewTest\.idea\artifacts\
     文件         734  2018-05-26 18:34  WebViewTest\.idea\compiler.xml
     文件         189  2018-05-26 18:34  WebViewTest\.idea\description.html
     文件         171  2018-05-26 18:34  WebViewTest\.idea\encodings.xml
     文件         218  2018-05-26 18:34  WebViewTest\.idea\gradle.xml
     目录           0  2018-05-29 16:28  WebViewTest\.idea\libraries\
     文件         236  2018-05-29 16:28  WebViewTest\.idea\libraries\asm_5_1_es.xml
     文件         226  2018-05-29 14:08  WebViewTest\.idea\libraries\gson_2_7.xml
     文件         489  2018-05-26 18:34  WebViewTest\.idea\misc.xml
     文件         269  2018-05-26 18:37  WebViewTest\.idea\modules.xml
     文件        8919  2018-05-26 18:34  WebViewTest\.idea\uiDesigner.xml
     文件         173  2018-05-26 18:34  WebViewTest\.idea\vcs.xml
     文件       38196  2018-05-29 20:04  WebViewTest\.idea\workspace.xml
     目录           0  2018-05-26 21:34  WebViewTest\out\
     目录           0  2018-05-26 21:34  WebViewTest\out\production\
     目录           0  2018-05-27 10:13  WebViewTest\out\production\WebViewTest\
     目录           0  2018-05-29 20:00  WebViewTest\out\production\WebViewTest\sample\
     文件        1211  2018-05-29 16:50  WebViewTest\out\production\WebViewTest\sample\baseController.class
     文件         722  2018-05-29 20:00  WebViewTest\out\production\WebViewTest\sample\Controller.class
     目录           0  2018-05-29 20:04  WebViewTest\out\production\WebViewTest\sample\JSBridge\
     目录           0  2018-05-29 19:10  WebViewTest\out\production\WebViewTest\sample\JSBridge\Annontation\
     文件         428  2018-05-29 19:10  WebViewTest\out\production\WebViewTest\sample\JSBridge\Annontation\JSImp.class
     文件        4346  2018-05-29 19:14  WebViewTest\out\production\WebViewTest\sample\JSBridge\RuntimeReflectasm.class
     文件        3454  2018-05-29 20:04  WebViewTest\out\production\WebViewTest\sample\JSBridge\WebViewHelp.class
     目录           0  2018-05-29 19:32  WebViewTest\out\production\WebViewTest\sample\Json\
     文件        1089  2018-05-29 19:10  WebViewTest\out\production\WebViewTest\sample\Json\EJsonType.class
     文件      231952  2018-05-29 14:43  WebViewTest\out\production\WebViewTest\sample\Json\gson-2.7.jar
     文件         534  2018-05-29 19:32  WebViewTest\out\production\WebViewTest\sample\Json\Gsonhelp$1.class
     文件         556  2018-05-29 19:32  WebViewTest\out\production\WebViewTest\sample\Json\Gsonhelp$2.class
............此处省略45个文件信息

评论

共有 条评论