如何在Java

时间:2018-09-04 14:18:26

标签: java xml

我是Java的新手,所以请放轻松。我试图用客户端动态填充一个名为clients.xml的xml文件。每个客户端都需要在VBox中单独显示。

用于创建单个客户端的xml如下:

            <HBox fx:id="clientBox" alignment="CENTER_LEFT" prefHeight="52.0" prefWidth="194.0">
                       <children>
                          <ImageView fitHeight="35.0" fitWidth="35.0" pickOnBounds="true" preserveRatio="true">
                             <image>
                                <Image url="@../assets/images/user-icon.png" />
                             </image>
                          </ImageView>
                          <VBox>
                             <children>
                                <HBox>
                                   <children>
                                      <Text strokeType="OUTSIDE" strokeWidth="0.0" text="Name:">
                                         <HBox.margin>
                                            <Insets right="10.0" />
                                         </HBox.margin>
                                      </Text>
                                      <Text strokeType="OUTSIDE" strokeWidth="0.0" styleClass="fn-14" text="Liam Smith" />
                                   </children>
                                </HBox>
                                <HBox prefHeight="10.0" />
                                <HBox>
                                   <children>
                                      <Text strokeType="OUTSIDE" strokeWidth="0.0" text="ID:">
                                         <HBox.margin>
                                            <Insets right="10.0" />
                                         </HBox.margin>
                                      </Text>
                                      <Text strokeType="OUTSIDE" strokeWidth="0.0" styleClass="fn-14" text="968745632952" />
                                   </children>
                                </HBox>
                             </children>
                             <padding>
                                <Insets left="5.0" right="5.0" />
                             </padding>
                          </VBox>
                          <VBox alignment="CENTER" HBox.hgrow="ALWAYS">
                             <children>
                                <Button mnemonicParsing="false" text="Delete">
                                   <styleClass>
                                      <String fx:value="background-transparent" />
                                      <String fx:value="fn-14" />
                                      <String fx:value="fill-red" />
                                   </styleClass>
                                   <VBox.margin>
                                      <Insets bottom="2.0" left="2.0" right="2.0" top="2.0" />
                                   </VBox.margin>
                                </Button>
                                <Button mnemonicParsing="false" text="Edit">
                                   <styleClass>
                                      <String fx:value="background-transparent" />
                                      <String fx:value="fn-14" />
                                      <String fx:value="fill-green" />
                                   </styleClass>
                                   <VBox.margin>
                                      <Insets bottom="2.0" left="2.0" right="2.0" top="2.0" />
                                   </VBox.margin>
                                </Button>
                             </children>
                          </VBox>
                       </children>
                       <padding>
                          <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
                       </padding>
                       <styleClass>
                          <String fx:value="background-light-grey" />
                          <String fx:value="hover-hand" />
                          <String fx:value="hover-light-blue" />
                       </styleClass>
                       <VBox.margin>
                          <Insets bottom="5.0" top="5.0" />
                       </VBox.margin>
                    </HBox>

我想做的是通过我的客户控制器中的一个循环在一个HBox内用clientSection的fx:id动态创建上述clientBox。

基本上我想做的是在ClientsCotroller中,做类似的事情:

   for (Client client : Bank.getInstance().getClients()) {
        clientSection.getChildren().add(new clientBox() );
    }

请告知我如何实现此目标。 问候,马特。

2 个答案:

答案 0 :(得分:0)

您可以将JAXB用作XML到Java对象的转换器。遵循以下示例:https://dzone.com/articles/using-jaxb-for-xml-with-java尝试对元素进行编组/取消编组。

答案 1 :(得分:0)

所以我最终要做的就是创建一个自定义控件。我将要动态创建的xml分离到了自己的名为listItem.fxml的fxml文件中。

listItem.fxml

  <fx:root alignment="CENTER_LEFT" prefHeight="78.0" prefWidth="363.0" stylesheets="@../css/styles.css" type="javafx.scene.layout.HBox" xmlns="http://javafx.com/javafx/8.0.121" xmlns:fx="http://javafx.com/fxml/1">

  <!-- xml for listitem comes here -->

</fx:root>

然后我为此文件创建了一个单独的控制器,名为ListItemControl.java。

ListItem.java

public class ListItemControl extends HBox {
       // associate the control to the fxml
  public ListItemControl() {
        FXMLLoader fxmlLoader = new 
          FXMLLoader(getClass().getResource("/com/company/fxml/listItem.fxml"));
        fxmlLoader.setRoot(this);
        fxmlLoader.setController(this);

        try {
            fxmlLoader.load();
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    }

之后,每次我想使用自定义组件时,我都会创建一个新的像这样的文件:

ListItemControl clientBoxControl = new ListItemControl();