在Java中,可以使用JavaFX庫中的ProgressIndicator類來顯示進度指示器。以下是一個簡單的示例代碼:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.ProgressIndicator;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class ProgressIndicatorExample extends Application {
@Override
public void start(Stage primaryStage) {
ProgressIndicator progressIndicator = new ProgressIndicator();
progressIndicator.setProgress(0.5); // 設置進度,0表示0%,1表示100%
StackPane root = new StackPane();
root.getChildren().add(progressIndicator);
Scene scene = new Scene(root, 200, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
在這個示例中,創建了一個ProgressIndicator對象,并設置其進度為0.5(50%)。將ProgressIndicator添加到StackPane中,并將StackPane作為根節點添加到場景中。最后顯示場景。
這是一個基本的使用進度指示器的示例,你可以根據自己的需求進一步定制。