当前位置: 首页 > 知识库问答 >
问题:

如何知道一组字段中更改了哪个JTextField

庞安晏
2023-03-14
ArrayList<Title> books = getAll(rowindex);
        int index=0;
        for(Title b:books){
        b.setIsbn((String) recTable.getValueAt(rowindex[index], 0));
        b.setTitle((String) recTable.getValueAt(rowindex[index], 1));
        b.setAuthor((String) recTable.getValueAt(rowindex[index], 2));
        b.setCountry((String) recTable.getValueAt(rowindex[index], 3));
        b.setPub((String) recTable.getValueAt(rowindex[index], 4));
        b.setYear((int) recTable.getValueAt(rowindex[index], 5));
        b.setEd((String) recTable.getValueAt(rowindex[index], 6));
        b.setPrice((Double) recTable.getValueAt(rowindex[index], 7));
        b.setCopies((int) recTable.getValueAt(rowindex[index], 8));
       Title_Record titlerecord = new Title_Record();
        titlerecord.setRecord(createRecord(b,rowindex[index++]));
        b.setRecord(titlerecord);
        ctrl.updateTitle(b);`

我想要一种方法,只更改字段,用户已更改,如果他选择了多行。

暂时还没有答案

 类似资料:
  • 我在laravel 5中工作,我有一个模块,用户可以在其中更新学生的信息,因为用户有一个带有当前数据的预加载表单,并且可以修改他想要的字段。然后,在控制器中,我执行以下操作: 那工作得很好。所以我的问题是:有一种方法可以获得已经更新的字段的名称?

  • 我有两个大小相同的ArrayList,一个用于JButton,一个用于JTextField。单击按钮时,相应的文本字段应更新。我怎么能意识到? p、 jcomponents对(jbutton jtextfield)的数量不是固定的。它们是为用户添加或删除而设计的。但是,它们必须按固定顺序排列。 我如何知道JButton ArrayList中的索引“I”?

  • 在我的Jenkins管道中,我通常使用< code>post声明函数向我发送电子邮件,以防管道出现故障。 函数的简单语法如下: 在上面的电子邮件中,我还想提到管道的哪个阶段(假设管道有5到6个阶段)失败了。我该怎么做?任何帮助都非常感谢。 上述要求的扩展将是向用户提供实际的错误日志(失败阶段的错误日志),也作为失败通知电子邮件的一部分。 想法是,当用户收到来自 jenkins 的失败通知时,他应该

  • 我在项目中使用了Spring靴。它内置了tomcat服务器。我找到一个jar < code > spring-boot-starter-Tomcat-1 . 2 . 5 . release . jar 。我需要在linux服务器上做一些与tomcat相关的配置。 我怎么才能知道这个用的是哪个Tomcat版本

  • 问题内容: 我在Linux Ubuntu服务器中搜索php.ini文件所在的路径,并且在执行命令时发现很多php.ini 。那么如何从php.ini所在的php脚本网页中确切地知道呢? 问题答案: 您可以使用php_ini_loaded_file() 取自php.net: 您可能还需要检查php_ini_scanned_files() 另外,您应该注意,如果从CLI运行PHP脚本,则有可能使用与服

  • 我想实现,让我们说温度单位转换器。我想使用AndroidMVVM和数据绑定来做到这一点,但我不知道如何。我有一个片段,它由三个编辑文本字段组成:摄氏度,华氏度,开尔文。更改其中之一后,其余部分应自动更新。在没有数据绑定的情况下,我将 TextWatcher 设置为每个字段,并在 onTextChanged 中执行所有验证和转换逻辑,并设置其他字段的值。在之前文本更改中,我删除了其他字段的侦听器,并