我想做的就是显示一个txt文件的全部内容。我该怎么做呢?我假设我会将 JLabel 的文本设置为包含整个文件的字符串,但是如何将整个文件变成一个字符串?另外,txt 文件是否在 Eclipse 的 src 文件夹中?
user1212818
问问题
26816 次
4 回答
4
此代码用于在您的 Jtext 区域中显示选定的文件内容
static void readin(String fn, JTextComponent pane)
{
try
{
FileReader fr = new FileReader(fn);
pane.read(fr, null);
fr.close();
}
catch (IOException e)
{
System.err.println(e);
}
}
选择文件
String cwd = System.getProperty("user.dir");
final JFileChooser jfc = new JFileChooser(cwd);
JButton filebutton = new JButton("Choose");
filebutton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
if (jfc.showOpenDialog(frame) !=JFileChooser.APPROVE_OPTION)
return;
File f = jfc.getSelectedFile();
readin(f.toString(), textpane);
SwingUtilities.invokeLater(new Runnable() {
public void run() {
frame.setCursor(Cursor.
getPredefinedCursor(
Cursor.DEFAULT_CURSOR));
}
});
}
});
于 2012-12-02T07:14:26.327 回答
3
我想做的就是显示一个txt文件的全部内容。我该怎么做呢?我假设我会将 JLabel 的文本设置为包含整个文件的字符串,但是如何将整个文件变成一个字符串?
您最好使用JTextArea来执行此操作。您还可以查看read()方法。
txt 文件是否在 Eclipse 的 src 文件夹中?
没有。您可以从任何地方读取文件。“读、写和创建文件”教程是一个很好的起点
于 2012-12-02T06:49:25.813 回答
2
- 在项目的工作文件夹中创建文本文件
- 逐行读取您的文本文件
- 将行内容存储在
stringBuilder
变量中 - 然后将下一行内容附加到
stringBuilder
变量 - 然后将
StringBuilder
变量的内容分配给JLabel
的 text 属性
但是将整个文件的数据存储到JLabel
、使用JTextArea
或任何其他文本容器中并不是一个好主意。
像这样阅读您的文件:
BufferedReader br = new BufferedReader(new FileReader("file.txt"));
try {
StringBuilder sb = new StringBuilder();
String line = br.readLine();
while (line != null) {
sb.append(line);
line = br.readLine();
}
String everything = sb.toString();
} finally {
br.close();
}
现在将所有内容的值分配给JLabel
或JTextArea
JLabel1.text=everything;
于 2012-12-02T06:44:41.027 回答
1
- 用于
java.io
打开文件流。 - 按行或字节从文件中读取内容。
- 将内容附加到
StringBuilder
或StringBuffer
- 设置
StringBuilder
或StringBuffer
为JLable.text
。
但我建议使用JTextArea
..
您不需要将此文件放在 src 文件夹中。
于 2012-12-02T06:50:38.943 回答