- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 javafx 构建一个桌面应用程序。我的 fxml 文件是:-
<?import java.lang.String?>
<?import javafx.collections.FXCollections?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.ProgressBar?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ch.Buildsapp.Main.BuildsController" fx:id="ap">
<children>
<HBox alignment="CENTER_LEFT" layoutX="6.0" layoutY="14.0" spacing="20.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<children>
<ComboBox fx:id="versionCombo" prefHeight="31.0" prefWidth="108.0" promptText="7.0 Win">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="Win" />
<String fx:value="Mac" />
</FXCollections>
</items>
<value>
<String fx:value="Win" />
</value>
</ComboBox>
<ComboBox fx:id="versionNo" prefHeight="31.0" prefWidth="89.0" promptText="7.0" />
<Button fx:id="downloadButton" minWidth="80.0" mnemonicParsing="false" text="Download" />
<Button fx:id="installButton" minWidth="80.0" mnemonicParsing="false" text="Install" />
<ComboBox fx:id="locCombo" prefHeight="31.0" prefWidth="103.0">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="CJ" />
<String fx:value="MN" />
</FXCollections>
</items>
<value>
<String fx:value="CJ" />
</value>
</ComboBox>
<ProgressBar fx:id="progressBar1" prefHeight="23.0" prefWidth="102.0" progress="0.0" />
</children>
<padding>
<Insets left="10.0" right="3.0" top="5.0" />
</padding>
</HBox>
<TableView fx:id="tableView" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="2.0" AnchorPane.rightAnchor="2.0" AnchorPane.topAnchor="40.0">
<columns>
<TableColumn fx:id="builds" prefWidth="482.0" text="Builds" />
<TableColumn fx:id="date" minWidth="0.0" prefWidth="124.0" text="Date" />
<TableColumn fx:id="release" prefWidth="168.0" text="Release" />
</columns>
</TableView>
</children>
</AnchorPane>
我的下载按钮 Controller 类是:-
downloadButton.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
download();
}
});
下载方法如下。
private void download() {
FTPClient ftpClient = new FTPConnection().makeConnection(loc);
try {
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
success = ftpClient.changeWorkingDirectory(PATH + preset + "/" + file_to_download + offset);
System.out.println("Download Path:-" + PATH + preset + "/" + file_to_download + offset);
if (!success) {
System.out.println("Could not changed the directory to RIBS");
return;
} else {
System.out.println("Directory changed to RIBS");
}
FTPFile[] files = ftpClient.listFiles();
for (FTPFile file : files) {
if (file.getName().contains(".zip")) {
dfile = file.getName();
}
}
fileMap.put("build", dfile);
primaryStage = (Stage) ap.getScene().getWindow();
String homePath = System.getProperty("user.home");
File downloadPath = new File(homePath + "\\LightroomBuildss\\" + osVer);
if (!downloadPath.exists()) {
if (downloadPath.mkdirs()) {
System.out.println("Directory is created!");
} else {
System.out.println("Failed to create directory!");
}
}
// System.out.println(chosenDir.getAbsolutePath());
filePath = new File(downloadPath + "/" + dfile);
if (filePath.exists()) {
System.out.println("File altready exist");
return;
} else {
fileMap.put("path", filePath.toString());
fileMap.put("kind", "RIBS");
Task task = new Task<Void>() {
@Override
public Void call() throws IOException {
try {
output = new FileOutputStream(downloadPath + "/" + dfile);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ftpClient.sendNoOp();
ftpClient.setConnectTimeout(1000);
Task<Void> sleeper = new Task<Void>() {
@Override
protected Void call() throws Exception {
try {
for (double progress = 0.0; progress < 100.0; progress++) {
Thread.sleep(100);
updateProgress(progress, 100);
System.out.println(progress);
}
} catch (InterruptedException e) {
}
return null;
}
};
ProgressBar slider = startProgressBar();
slider.progressProperty().bind(sleeper.progressProperty());
Thread thread = new Thread(sleeper);
thread.start();
if (ftpClient.retrieveFile(dfile, output) == true) {
downloadButton.setDisable(true);
outsize = dfile.length();
}
return null;
}
};
Thread t = new Thread(task);
t.start();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (output != null) {
try {
output.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
我的进度条代码是:-
public ProgressBar startProgressBar() {
Stage primaryStage = new Stage();
ProgressBar pb = new ProgressBar(0);
ProgressIndicator pi = new ProgressIndicator(0);
pi.progressProperty().bind(pb.progressProperty());
HBox hb = new HBox();
hb.setSpacing(5);
hb.setAlignment(Pos.CENTER);
hb.getChildren().addAll(pb, pi);
Scene scene = new Scene(hb, 300, 100);
primaryStage.setScene(scene);
primaryStage.show();
return pb;
}
我在下载开始之前从下载方法中调用 startProgessBar 方法,但在调用该方法之后,进度条不会启动,并且在方法调用之后编写的代码(在本例中禁用下载按钮)也不会被执行,尽管构建已下载到所需的文件夹中。如果没有调用startProgressBar方法,则代码运行正常。
最佳答案
有很多问题。首先,不要将进度指示器的窗口设置放在任务中。设置它,然后定义任务并运行它。
我没有看到任务进度和屏幕之间有任何链接。
根据 slider 的 valueProperty 修改 slider 似乎不会使其在屏幕上更新。最好通过绑定(bind)直接链接到 ProgressBar。
这里有一些简单的代码可以完成您正在寻找的任务,在任务中使用虚拟操作而不是下载:
public class SampleTask extends Application {
private BorderPane testPane;
class TestPane extends BorderPane {
public TestPane() {
Button button = new Button("Click Here");
setCenter(button);
button.setOnAction(evt -> {
Task<Void> sleeper = new Task<Void>() {
@Override
protected Void call() throws Exception {
try {
for (double progress = 0.0; progress < 100.0; progress++) {
Thread.sleep(100);
updateProgress(progress, 100);
System.out.println(progress);
}
} catch (InterruptedException e) {
}
return null;
}
};
ProgressBar slider = startProgressBar();
slider.progressProperty().bind(sleeper.progressProperty());
Thread thread = new Thread(sleeper);
thread.start();
});
}
}
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Task Progress Tester");
testPane = new TestPane();
primaryStage.setScene(new Scene(testPane, 300, 250));
primaryStage.show();
}
public ProgressBar startProgressBar() {
Stage primaryStage = new Stage();
ProgressBar pb = new ProgressBar(0);
ProgressIndicator pi = new ProgressIndicator(0);
pi.progressProperty().bind(pb.progressProperty());
HBox hb = new HBox();
hb.setSpacing(5);
hb.setAlignment(Pos.CENTER);
hb.getChildren().addAll(pb, pi);
Scene scene = new Scene(hb, 300, 100);
primaryStage.setScene(scene);
primaryStage.show();
return pb;
}
}
关于java - ProgressBar 不与 javafx 结合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36352815/
我有一张 Excel 表格,用于更新玩家评分。 播放器 配售 初始化 1 2 3 4 金融评级 一个 1 2.0 1.000 0.018 0.016 0.014 2.007 D 2 -2.0 54.5
我有一个 map = std::map ,其中 myItemModel继承QAbstractItemModel . 我现在要合并所有 myItemModel合一myItemModel (其他所有元素模
我大量使用“do.call”来生成函数调用。例如: myfun <- "rnorm"; myargs <- list(n=10, mean=5); do.call(myfun, myargs); 但是
想象一下 InputStream 的以下变体: trait FutureInputStream { //read bytes asynchronously. Empty array means E
这是我的 C 代码: #include void sum(); int newAlphabet; int main(void) { sum();
我只是想选择类“.last”之后的每个元素。 HTML: 1 2 Jquery
我正在为一个项目构建一个 XML 反序列化器,我经常遇到这种类型的代码情况: var myVariable = ParseNDecimal(xml.Element("myElement")) == n
这是来自 Selecting the highest salary 的继续问题 假设有一个表 'wagetable' name lowhours highhours wage pri
我正在为我的程序创建一个战舰程序;该程序运行良好,但我试图确保当用户将坐标超出范围时,程序会说他们输入的坐标不正确。这是代码: #include #include void
我有一个函数,它为每种情况返回不同的 DWORD 值,如果出现错误。所以我有以下定义: #define ERR_NO_DB_CONNECTION 0x90000 #define ERR_DB_N
在派生类中引发基类事件以下简单示例演示了在基类中声明可从派生类引发的事件的标准方法。此模式广泛应用于 .NET Framework 类库中的 Windows 窗体类。在创建可用作其他类的基类的类时,应
我只是想知道这是否可能: use Modern::Perl; my @list = ('a' .. 'j'); map { func($_) } each(@list); sub func { m
我一直在使用 =IF(L2="","Active",IF(K2I2,"Late"))) 有效,但现在我需要检查 F 上的多个条件 专栏 我试过了 OR 函数 =IF(OR(F2="Scheduled"
我有 2 个命令,如下所示。 在视频中添加介绍图片 ffmpeg -y -loop 1 -framerate 10 -t 3 -i intro.png -i video.mp4 -filter_com
好的,我有这个公式可以根据名字和姓氏列表生成用户名。现在,虽然这可行,但我希望单元格改为引用我自己的 VBA 函数。但是,由于代码少得多,我仍然想使用原始公式。 我有这个公式: =SUBSTITUTE
我有两个 HAProxy 实例。两个实例都启用了统计信息并且工作正常。 我正在尝试将两个实例的统计信息合并为一个,以便我可以使用单个 HAProxy 来查看前端/后端统计信息。我试图让两个 hapro
我有一个 Observable,其中每个新值都应该引起一个 HTTP 请求。在客户端,我只关心最新的响应值;但是,我希望每个请求都能完成以进行监控/等。目的。 我目前拥有的是这样的: function
我的网站上有 TinyMCE 插件。在 TinyMCE 插件的 textarea 中添加图像时,我希望这些图像包含延迟加载。我网站的缩略图具有特定类型的延迟加载,其中 src 图像是灰色背景。根据用户
我希望合并润滑间隔,以便如果它们重叠,则从内部第一个时间获取最小值和从内部最后一个时间获取最大值并总结以创建一个跨越整个时间段的新间隔。这是一个reprex: library(lubridate, w
我有一个应用程序,它本质上是一个页眉、主要内容和一个始终可见的页脚。页脚可以改变大小,我想在页脚上方的主内容面板上放置一些工具。主要布局是用 flex 完成的,我阅读文档的理解是绝对定位通过相对于最近
我是一名优秀的程序员,十分优秀!