- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 JTextArea 中打开一个文件,然后对其进行写入和读取。我终于让它用 FileReader 在 JTextArea 中打开,然后试图合并 FileWriter 打破它。现在我无法再次在文本区域中打开它。我见过显示 FileChooser 打开特定文件的示例,但我希望用户能够传递一个变量,以便用户可以使用 FileChooser 打开他们浏览器的任何文件。当我破坏代码时,我在 OpenLister 方法中添加了一个文件阅读器。将 FileReader 和 FileWriter 放在同一个 ActionListener 中是常见的做法吗?任何关于一个好的例子和/或建议的方向将不胜感激。我已经复制了下面的代码。
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.*;
public class ClassChooser extends JFrame implements ActionListener
{
//create a label
private JLabel response;
File file;
//menu tabs
private JMenu fileMenu;
private JMenu editMenu;
private JMenu helpMenu;
String line;
//create a file chooser
private JFileChooser fc;
BufferedReader br;
//create a text area
JTextArea ta = new JTextArea();
//constructors
public ClassChooser
{
//create scroll pane
JScrollPane scrollPane = new JScrollPane(ta);
ta.setText("Enter text to see scroll bars.");
//create a panel
JPanel content = new JPanel();
content.setLayout(new BorderLayout());
content.add(scrollPane, BorderLayout.CENTER);
//call functions to create drop down menu's
createFileMenu();
createEditMenu();
createHelpMenu();
//create menu bar and add drop down menu's
JMenuBar menuBar = new JMenuBar();
this.setJMenuBar(menuBar);
menuBar.add(fileMenu);
menuBar.add(editMenu);
menuBar.add(helpMenu);
this.setContentPane(content);
this.setTitle("File Chooser");
this.setVisible(true);
this.setSize(600,250);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void createFileMenu()
{
JMenuItem item;
fileMenu = new JMenu("File");
item = new JMenuItem("New");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Open");
item.addActionListener(new OpenListener());
fileMenu.add(item);
item = new JMenuItem("Save");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Rename");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Delete");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Make Directory");
item.addActionListener(this);
fileMenu.add(item);
fileMenu.addSeparator();
item = new JMenuItem("Exit");
item.addActionListener(this);
fileMenu.add(item);
}
public void createEditMenu()
{
JMenuItem item;
editMenu = new JMenu("Edit");
item = new JMenuItem("Cut");
item.addActionListener(this);
editMenu.add(item);
item = new JMenuItem("Copy");
item.addActionListener(this);
editMenu.add(item);
item = new JMenuItem("Paste");
item.addActionListener(this);
editMenu.add(item);
}
public void createHelpMenu()
{
JMenuItem item;
helpMenu = new JMenu("Help");
item = new JMenuItem("Welcome");
item.addActionListener(this);
helpMenu.add(item);
item = new JMenuItem("Help Contents");
item.addActionListener(this);
helpMenu.add(item);
}
private class OpenListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
fc = new JFileChooser();
// directories only to be selected
fc.setFileSelectionMode(JFileChooser.FILES_ONLY);
fc.setSelectedFile(fc.getCurrentDirectory() );
fc.setDialogTitle("Directory Chooser");
fc.setMultiSelectionEnabled(false);
int retVal = fc.showOpenDialog(ClassChooser.this);
//File file;
if(retVal == fc.APPROVE_OPTION)
{
file = fc.getSelectedFile();
try {
br = new BufferedReader(new FileReader(file));
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
line = br.readLine();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
while(line != null)
{
ta.append(line + "\n");
try {
line = br.readLine();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
}
}
}
public static void main(String[] args)
{
ClassChooser fce = new ClassChooser;
String filename = File.separator + "tmp";
}
public void actionPerformed(ActionEvent e)
{
// TODO Auto-generated method stub
String menuName;
menuName = e.getActionCommand();
if(menuName.equals("Exit"))
{
System.exit(0);
}
else
{
response.setText("Menu Item '" + menuName + "' is selected.");
}
}
}
最佳答案
您的代码实际上打开了该文件,但随后您在没有清除先前加载的文件的内容的情况下将其附加到文本区域中。
所以在您的 OpenListener
类(class)actionPerformed
方法添加 ta.setText("")
作为第一条语句,然后继续加载文件内容。
代码:
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.*;
public class ClassChooser extends JFrame implements ActionListener {
// create a label
private JLabel response;
File file;
// menu tabs
private JMenu fileMenu;
private JMenu editMenu;
private JMenu helpMenu;
String line;
// create a file chooser
private JFileChooser fc = null;
BufferedReader br;
// create a text area
JTextArea ta = new JTextArea();
private String currentFileBeingEdited = null;
// constructors
public ClassChooser() {
// create scroll pane
JScrollPane scrollPane = new JScrollPane(ta);
ta.setText("Enter text to see scroll bars.");
// create a panel
JPanel content = new JPanel();
content.setLayout(new BorderLayout());
content.add(scrollPane, BorderLayout.CENTER);
// call functions to create drop down menu's
createFileMenu();
createEditMenu();
createHelpMenu();
// create menu bar and add drop down menu's
JMenuBar menuBar = new JMenuBar();
this.setJMenuBar(menuBar);
menuBar.add(fileMenu);
menuBar.add(editMenu);
menuBar.add(helpMenu);
this.setContentPane(content);
this.setTitle("File Chooser");
this.setVisible(true);
this.setSize(600, 250);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void createFileMenu() {
JMenuItem item;
fileMenu = new JMenu("File");
item = new JMenuItem("New");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Open");
item.addActionListener(new OpenListener());
fileMenu.add(item);
item = new JMenuItem("Save");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Rename");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Delete");
item.addActionListener(this);
fileMenu.add(item);
item = new JMenuItem("Make Directory");
item.addActionListener(this);
fileMenu.add(item);
fileMenu.addSeparator();
item = new JMenuItem("Exit");
item.addActionListener(this);
fileMenu.add(item);
}
public void createEditMenu() {
JMenuItem item;
editMenu = new JMenu("Edit");
item = new JMenuItem("Cut");
item.addActionListener(this);
editMenu.add(item);
item = new JMenuItem("Copy");
item.addActionListener(this);
editMenu.add(item);
item = new JMenuItem("Paste");
item.addActionListener(this);
editMenu.add(item);
}
public void createHelpMenu() {
JMenuItem item;
helpMenu = new JMenu("Help");
item = new JMenuItem("Welcome");
item.addActionListener(this);
helpMenu.add(item);
item = new JMenuItem("Help Contents");
item.addActionListener(this);
helpMenu.add(item);
}
private class OpenListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
//ADDED ONLY THIS LINE
ta.setText("");
fc = new JFileChooser();
// directories only to be selected
fc.setFileSelectionMode(JFileChooser.FILES_ONLY);
fc.setSelectedFile(fc.getCurrentDirectory());
fc.setDialogTitle("Directory Chooser");
fc.setMultiSelectionEnabled(false);
int retVal = fc.showOpenDialog(ClassChooser.this);
// File file;
if (retVal == fc.APPROVE_OPTION) {
file = fc.getSelectedFile();
currentFileBeingEdited = file.getAbsolutePath();
try {
br = new BufferedReader(new FileReader(file));
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
line = br.readLine();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
while (line != null) {
ta.append(line + "\n");
try {
line = br.readLine();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
}
}
}
public static void main(String[] args) {
ClassChooser fce = new ClassChooser();
String filename = File.separator + "tmp";
}
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
String menuName;
menuName = e.getActionCommand();
if (menuName.equals("Exit")) {
System.exit(0);
} else if("Save".equalsIgnoreCase(menuName)){
PrintWriter pw = null;
try {
pw = new PrintWriter(new File(currentFileBeingEdited));
pw.println(ta.getText());
} catch (FileNotFoundException e1) {
e1.printStackTrace();
} finally {
if(pw != null){
pw.close();
}
}
} else {
response.setText("Menu Item '" + menuName + "' is selected.");
}
}
}
关于java - 如何在 JTextArea 中打开文件并使用 FileReader 和 FileWriter 类进行读写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8291246/
我有一个简单的 GUI,其中有一个 JTextArea。我创建了一个方法来从用户获取消息,另一个方法将文本附加到文本区域,如下所示 Message m = new Message(); ... pri
我正在使用 JList,并且尝试对单元格使用 JTextAreas(实现 ListCellRenderer)。它不起作用。这些单元格仅显示 ListCellRenderer.toString() 而不
此代码计算 JTextArea 的每一行并添加行数 左 JTextPane import java.awt.BorderLayout; import java.awt.Color; import ja
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我必须将一个jtextarea的内容复制到另一个jtextarea。怎么办?我已经做了以下操作:但是这个程序正在将一个jtext区域的文本逐个字符写入另一个jtext区域。我希望它在用户按下回车键时复
在我的 GUI 中,JScrollPane 中有一个附加到容器的 JTextArea。 ta = new JTextArea(); jsp = new JScrollP
我正在编写一些测试代码来练习 OOP,我想将 JTextArea 从“writeToArea”附加到定义和初始化 JTextArea 的“initialize”方法。我已经尝试直接调用“输出”变量,但
JComboBox cBox = new JComboBox(); cBox.addItem("Food"); String x = "Food"; cBox.addItem("Shi
我正在尝试将一个 JTextArea 放在 GUI 中的另一个 JTextArea 旁边 我正在为数据库编写 GUI,并希望将每列的数据放在不同的 JTextArea 中。这将使我的 GUI 看起来更
这是一个带有 JTextarea 的弹出 Jpanel,但我有一个问题。当我将鼠标移到 JTextarea 上时,它会闪烁。为什么会出现这种情况? 在 Debug模式下,鼠标移动会生成 mouseEx
我有一个类将输出显示到 JTextArea 中。意味着成功运行后,它将在文本区域中显示输出。 我还有一个主类,它将类与几个按钮组合在一起,以启动特定类中代码的执行。这个主类创建了一个带有几个按钮的 G
我的问题在于我的 DocumentLister AreaListener。我似乎无法弄清楚如何将用户输入的文本传递到一个 JTextArea 中进行转换,并将其返回到另一个 JTextArea。 该程
我有一个对象ReminderGUI其中有 JTextArea field 。 ReminderGUI代表一个可以保存和显示提醒的应用程序。当getReminderButton单击我希望应用程序找到之前
我目前正在使用 Swing 开发控制台窗口。它基于 JTextArea 并且像普通命令行一样工作。您在一行中键入一条命令,然后按回车键。在下一行中,显示了输出,在该输出下,您可以编写下一条命令。 现在
我开发了一个 Swing GUI,其中我尝试使用按钮使用另一个文本区域中的文本填充文本区域。 代码: private void jButton1ActionPerformed(java.awt.eve
当我制作时,我有一个包含 JPanel 的小型 GUI,其中有 JTextArea 和 JLabel panel1.setLayout(null); 我可以完成所需的位置,但 JTextArea 消失
我在 JDialog 框中有一个 JTabbedPane,它在 Pane 中包含的所有 JPanels 上使用 GridBagLayout 。在显示的第一个面板上有一个 JTextArea (desc
我搜索了答案,但我找到的只是解决方法,而不是原因,所以我问这个问题: 我是 GUI 编程的新手。在练习一些有关关键事件处理的代码时,我遇到了一个示例,该示例在 JFrame 中包含一个 JTextAr
将有 91 个文本区域,每个区域都显示一个值。我试图找到一种更有效的方法来解决这个问题,而不是只是盲目地添加 JTextAreas 并尝试管理 91 个文本区域中每个区域的实例化名称。 我愿意接受有关
private JPanel contentPane; public Driver() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
我是一名优秀的程序员,十分优秀!