mystyle-java-fx-tools/src/main/resources/fxml/jks-file.fxml

29 lines
1.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="649.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.tools.controller.JksFileController">
<children>
<TextField fx:id="dir" layoutX="101.0" layoutY="18.0" prefHeight="25.0" prefWidth="474.0" />
<Button fx:id="choose_file" layoutX="598.0" layoutY="18.0" mnemonicParsing="false" text="Button" />
<TextArea fx:id="jks_public" layoutX="114.0" layoutY="110.0" prefHeight="170.0" prefWidth="1045.0" />
<Button layoutX="1025.0" layoutY="18.0" mnemonicParsing="false" text="x509Certificate-生成" fx:id="x509_gen" />
<Label layoutX="40.0" layoutY="22.0" text="生成路径:" />
<Label layoutX="137.0" layoutY="458.0" />
<Label layoutX="38.0" layoutY="73.0" text="jks文件名:" />
<TextField fx:id="jks_file_name" layoutX="101.0" layoutY="69.0" />
<TextField fx:id="cer_file_name" layoutX="365.0" layoutY="69.0" />
<Label layoutX="293.0" layoutY="73.0" text="cer文件名:" />
<TextArea fx:id="cer_public" layoutX="114.0" layoutY="483.0" prefHeight="143.0" prefWidth="1117.0" />
<Button fx:id="jks_gen" layoutX="606.0" layoutY="69.0" mnemonicParsing="false" text="生成" />
<Label layoutX="50.0" layoutY="117.0" text="JKS 公钥:" />
<Label layoutX="41.0" layoutY="308.0" text="JKS 私钥:" />
<TextArea fx:id="jks_private" layoutX="114.0" layoutY="308.0" prefHeight="143.0" prefWidth="1045.0" />
<Label layoutX="50.0" layoutY="483.0" text="证书公钥:" />
</children>
</AnchorPane>