while ((line = reader.readLine()) != null)读取多行文件时,每行数据组数相同,用空格隔开,为什么会数组越界
时间: 2024-03-15 17:47:49 浏览: 98
可能是因为你在使用String的split方法将每行数据按照空格分割成数组时,有些行的数据中含有多余的空格或者没有数据,导致分割出的字符串数组长度不一致,进而导致数组越界。你可以在使用split方法前,先使用trim方法去除每行数据的首尾空格,再使用正则表达式进行分割,以避免这种情况的发生。例如,你可以使用下面的代码进行分割:
```
String[] array = line.trim().split("\\s+");
```
其中,trim方法用于去除首尾空格,而split方法使用正则表达式"\\s+"表示按照一个或多个空格进行分割。这样处理后,每行数据分割出的字符串数组长度应该是相同的,不会引起数组越界。
相关问题
private void updateTable() { int count=0; List<user> userList=new ArrayList<>(); //读取文件信息,加入到列表,下面读列表塞到页面上数据 File inputFile = new File("yaopin.txt"); BufferedReader reader = null; try { reader = new BufferedReader(new FileReader(inputFile)); String currentLine; while((currentLine = reader.readLine()) != null) { String[] arr = currentLine.split("\\s+"); if(arr.length >= 5 ) { user user =new user(); user.setZiduan1(arr[0]); user.setZiduan2(arr[1]); user.setZiduan3(arr[2]); user.setZiduan4(arr[3]); user.setZiduan5(arr[4]); userList.add(user); } } alluserList=userList; String[][] datas = new String[userList.size()][5]; for (int i = 0; i < userList.size(); i++) { datas[i][0] = userList.get(i).getZiduan1(); datas[i][1] = userList.get(i).getZiduan2(); datas[i][2] = userList.get(i).getZiduan3(); datas[i][3] = userList.get(i).getZiduan4()+""; datas[i][4] =userList.get(i).getZiduan5()+""; } table.setModel(new DefaultTableModel(datas, headers)); reader.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } }
这段代码是一个私有方法`updateTable()`,用于更新表格数据。它的功能是从文件中读取信息,并将信息添加到列表中,然后将列表中的数据填充到表格中。
首先,它会创建一个整型变量`count`并初始化为0,然后创建一个`userList`列表,用于存储从文件中读取的用户信息。
接下来,它会打开一个文件`yaopin.txt`,创建一个`BufferedReader`对象来读取文件内容。
然后,它会循环读取文件的每一行,使用空格作为分隔符将每行拆分成数组`arr`。如果数组的长度大于等于5,就会创建一个`user`对象,并将拆分后的数组元素设置到`user`对象的字段中。最后,将`user`对象添加到`userList`列表中。
接着,它会将`userList`赋值给`alluserList`。
然后,它会创建一个二维字符串数组`datas`,用于保存表格中的数据。通过遍历`userList`列表,将每个用户对象的字段值依次赋值给`datas`数组的相应位置。
最后,它会使用`DefaultTableModel`类和表头信息来创建表格模型,并将数据模型设置到名为`table`的表格组件上。
在异常处理中,如果文件不存在,会打印堆栈跟踪信息。如果在读取文件过程中发生IO异常,也会打印堆栈跟踪信息。
这段代码用于读取文件中的信息,并将信息显示在表格中,以更新表格数据。
{ JPanel buttonPane = new JPanel(); buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT)); getContentPane().add(buttonPane, BorderLayout.SOUTH); { JButton okButton = new JButton("OK"); okButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { if (!textField.getText().equals("")){ try{ String[] a={}; int count=0; File inputFile = new File("chufang.txt"); File tempFile = new File("Tempchufang.txt"); BufferedReader reader = new BufferedReader(new FileReader(inputFile)); BufferedWriter writer = new BufferedWriter(new FileWriter(tempFile)); String currentLine; while((currentLine = reader.readLine()) != null) { a= currentLine.split(" "); String[] arr = currentLine.split("\\s+"); if(arr.length >= 1 && arr[0].equals(textField.getText())) { count=1; continue; } writer.write(currentLine + System.getProperty("line.separator")); } writer.close(); reader.close(); inputFile.delete(); tempFile.renameTo(inputFile); boolean successful = tempFile.renameTo(inputFile); } catch(IOException e1) { e1.printStackTrace(); } } dispose(); } }); okButton.setActionCommand("OK"); buttonPane.add(okButton); getRootPane().setDefaultButton(okButton); } } setVisible(true);
这段代码创建了一个包含 "OK" 按钮的面板,并将其添加到容器的南部(SOUTH)位置。首先,通过 `new JPanel()` 创建了一个新的 JPanel 对象,并将其赋值给变量 buttonPane。然后,通过 `buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT))` 设置 buttonPane 的布局管理器为 FlowLayout,并将按钮靠右对齐。
接下来,通过 `getContentPane().add(buttonPane, BorderLayout.SOUTH)` 将 buttonPane 添加到内容面板中,并指定其在 BorderLayout 的南部位置。
然后,创建了一个名为 okButton 的 JButton 对象,并将其文本设置为 "OK"。通过 `okButton.addActionListener(new ActionListener())` 为按钮添加了一个动作监听器,用于处理按钮的点击事件。
在按钮的点击事件处理程序中,首先判断文本框中的内容不为空。如果不为空,则执行以下操作:
1. 创建一个空数组 `String[] a={};` 和一个计数变量 `int count=0;`。
2. 创建一个 File 对象来表示输入文件和临时文件。
3. 使用 BufferedReader 和 BufferedWriter 分别创建读取和写入文件的对象。
4. 循环读取输入文件的每一行,使用空格分割每一行的内容为数组 `arr`。
5. 如果数组 `arr` 的长度大于等于 1 并且第一个元素与文本框中的内容相等,则将计数变量设置为 1 并继续下一次循环。
6. 否则,将当前行写入临时文件。
7. 关闭写入和读取文件的对象。
8. 删除输入文件。
9. 将临时文件重命名为输入文件,完成删除指定内容的操作。
最后,通过 `setVisible(true)` 显示窗口。
这段代码的作用是创建一个带有 "OK" 按钮的面板,并在点击按钮时执行删除指定内容的操作。
阅读全文