我正在学习Java,我正在尝试加载.txt文件中的一些数字。这些数字需要出现在GUI内的文本字段中。我在谷歌做了很多研究,但我无法让它发挥作用。任何提示?
//TEXT FIELDS
this.Vx = new JTextField();
this.Vx.setBounds(120, 20, 100, 30);
this.add(Vx);
JLabel etiVx = new JLabel("Vx");
etiVx.setBounds(90, 20, 90, 40);
this.add(etiVx);
this.Vy = new JTextField();
this.Vy.setBounds(120, 60, 100, 30);
this.add(Vy);
JLabel etiVy = new JLabel("Vy");
etiVy.setBounds(90,60,100,30);
this.add(etiVy);
//BOTTON TO OPEN .TXT
@Override
public void actionPerformed(ActionEvent e) {
JFileChooser abrir = new JFileChooser();
if(e.getSource()==this.abrir){
int returnVal = abrir.showOpenDialog(PanelControl.this);
if(returnVal == JFileChooser.APPROVE_OPTION);
File file = abrir.getSelectedFile();
JOptionPane.showMessageDialog(null,"Abierto");
try{
BufferedReader eleccion = new BufferedReader(new FileReader(file));
String linea = eleccion.readLine();
while((linea=eleccion.readLine())!=null){
Vx.setText(file);
linea = eleccion.readLine();
}
}
catch(IOException f){
System.out.println(f);
}
}
答案 0 :(得分:0)
这是什么,
while(eleccion!=null){
Vx.setText(file);//how can you set a file handler to a TextField
linea = eleccion.readLine();
}
使用,
while((linea=eleccion.readLine())!=null){
Vx.setText(linea);
}
如果您需要显示文件中的所有文本,最好使用JTextArea并将所有行添加到您从文件中读取的内容。