有没有办法在java中循环动态创建的组件?

发布于 2024-12-04 17:01:55 字数 682 浏览 0 评论 0原文

我正在动态创建 jtextfields,我想知道是否有一种方法可以循环遍历每个字段并检查它的值,

如下所示:

foreach(JTextField:jtf in JFrame)
    System.out.prinlnt(jtf.getText());

编辑:

我当前执行此操作的方法是创建一个数组列表:

private ArrayList<JTextField> txtFields = new ArrayList<JTextField>();

当我调用 createDynamic 时:

final JTextField txtDirPath = new JTextField(20);
txtFields.add(txtDirPath);

然后在我的按钮上我有一个执行此操作的操作:

for (int i = 0; i < txtFields.size(); i++) {
    String strPath = txtFields.get(i).getText();
    System.out.println(txtFields.size());
    System.out.println(strPath);
}

I am dynamically creating jtextfields and I was wondering if there was a way to loop through each one and check for it's value

something like this:

foreach(JTextField:jtf in JFrame)
    System.out.prinlnt(jtf.getText());

Edit:

The current way I'm doing this is creating an array list:

private ArrayList<JTextField> txtFields = new ArrayList<JTextField>();

When I call createDynamic:

final JTextField txtDirPath = new JTextField(20);
txtFields.add(txtDirPath);

Then on my button I have an action which perform this:

for (int i = 0; i < txtFields.size(); i++) {
    String strPath = txtFields.get(i).getText();
    System.out.println(txtFields.size());
    System.out.println(strPath);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

痴情 2024-12-11 17:01:55

动态创建文本字段时,只需将文本字段放入列表 (java.util.List) 中,然后循环遍历该列表即可:

for (JTextField jtf : theListOfTextFields) {
    System.out.prinln(jtf.getText());
}

Just put you text fields in a list (java.util.List<JTextField>) when creating them dynamically, and loop over this list :

for (JTextField jtf : theListOfTextFields) {
    System.out.prinln(jtf.getText());
}
爱,才寂寞 2024-12-11 17:01:55
for (Component c : jframe.getComponents()) {
    if (c instanceof JTextField)
        System.out.println(((JTextField)c).getText());
}
for (Component c : jframe.getComponents()) {
    if (c instanceof JTextField)
        System.out.println(((JTextField)c).getText());
}
和我恋爱吧 2024-12-11 17:01:55

如果您不想将其存储在 @JB Nizet 建议的列表中,您可以调用 Container#getComponents 获取所有子组件的数组。并检查每个字段是否为 JTextField

Component[] compArr = myFrame.getComponents();
for (Component comp : compArr) {
    if (comp instanceof JTextField) {
        System.out.prinlnt(((JTextField)comp).getText());
    }
}

If you don't want to store thos in a list as @JB Nizet proposed, You can call Container#getComponents to get an array of all the child components. And for each one check if it a JTextField.

Component[] compArr = myFrame.getComponents();
for (Component comp : compArr) {
    if (comp instanceof JTextField) {
        System.out.prinlnt(((JTextField)comp).getText());
    }
}
太阳公公是暖光 2024-12-11 17:01:55
for(Component c : myJFrame.getComponents){
   if (c instanceof JTextField){
      // do work here
   }
}
for(Component c : myJFrame.getComponents){
   if (c instanceof JTextField){
      // do work here
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文