type
status
date
slug
summary
tags
category
icon
password
@ZZHow(ZZHow1024)
JavaFX简介
JavaFX is an open source, next generation client application platform for desktop, mobile and embedded systems built on Java. It is a collaborative effort by many individuals and companies with the goal of producing a modern, efficient, and fully featured toolkit for developing rich client applications.
- 官网:
通过导入JAR包的方式配置JavaFX
- 打开官网。
- 向下拉动,选择 Download。
- 选择 JavaFX 版本为 21.0.4 [LTS]、操作系统、芯片架构 和 类型为 SDK。
- 解压下载的 .zip 压缩包。
- Eclipse IDE
- 启动 Eclipse,新建 Project。
- 选择 Project - Properties,在左侧边栏选择 Java Build Path,在上侧导航栏选择 Libraries,单击右侧的 Add External JARs 按钮,添加之前解压的文件中 lib 目录下的所有 .jar 文件。
- 单击右下方 Apply and Close 按钮。
- 展开左侧边栏中的 Referenced Libraries,看到若干个 javafx 开头的 JAR 包,证明添加成功。
- IntelliJ IDEA
- 启动 IntelliJ IDEA,新建 Project。
- 选择 File - Project Structure…,在左侧边栏选择 Libraries,单击上侧的 “+” 按钮,选择 Java,添加之前解压的文件中 lib 目录下的所有 .jar 文件。
- 单击右下方 OK 按钮。
- 展开左侧边栏中的 External Libraries,看到若干个 javafx 开头的 JAR 包,证明添加成功。