我正忙着尝试将文字处理器作为我的项目之一,我需要将输入到jTextArea的文本保存为.txt文件,其中包含用户选择的名称和位置。注意“fc”是我已声明的i文件选择器的名称。
public class TextEditor extends javax.swing.JFrame {
int count = 2;
JTextArea n = new JTextArea();
final JFileChooser fc = new JFileChooser();
public void SaveAs() {
final JFileChooser SaveAs = new JFileChooser();
SaveAs.setApproveButtonText("Save");
int actionDialog = SaveAs.showOpenDialog(this);
File fileName = new File(SaveAs.getSelectedFile() + ".txt");
try {
if (fileName == null) {
return;
}
BufferedWriter outFile = new BufferedWriter(new FileWriter(fileName));
outFile.write(n.getText()); //put in textfile
outFile.close();
} catch (IOException ex) {
}
}
答案 0 :(得分:3)
我会使用JTetArea自己的write方法,因为这样可以轻松写入文件并很好地处理所有换行。例如(并借用你的代码):
public class TextEditor extends JFrame {
int count = 2;
JTextArea n = new JTextArea();
final JFileChooser fc = new JFileChooser();
public void SaveAs() {
final JFileChooser SaveAs = new JFileChooser();
SaveAs.setApproveButtonText("Save");
int actionDialog = SaveAs.showOpenDialog(this);
if (actionDialog != JFileChooser.APPROVE_OPTION) {
return;
}
File fileName = new File(SaveAs.getSelectedFile() + ".txt");
BufferedWriter outFile = null;
try {
outFile = new BufferedWriter(new FileWriter(fileName));
n.write(outFile); // *** here: ***
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (outFile != null) {
try {
outFile.close();
} catch (IOException e) {
// one of the few times that I think that it's OK
// to leave this blank
}
}
}
}
}
你的代码中有一些错误。对于例如这很有效,
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.io.*;
import javax.swing.*;
import javax.swing.filechooser.FileNameExtensionFilter;
@SuppressWarnings("serial")
public class TextEditor extends JFrame {
int count = 2;
JTextArea textArea = new JTextArea(10, 30);
final JFileChooser fc = new JFileChooser();
public TextEditor() {
add(new JScrollPane(textArea));
add(new JPanel(){{add(new JButton(new AbstractAction("Save As") {
@Override
public void actionPerformed(ActionEvent arg0) {
saveAs();
}
}));}}, BorderLayout.SOUTH);
}
public void saveAs() {
FileNameExtensionFilter extensionFilter = new FileNameExtensionFilter("Text File", "txt");
final JFileChooser saveAsFileChooser = new JFileChooser();
saveAsFileChooser.setApproveButtonText("Save");
saveAsFileChooser.setFileFilter(extensionFilter);
int actionDialog = saveAsFileChooser.showOpenDialog(this);
if (actionDialog != JFileChooser.APPROVE_OPTION) {
return;
}
// !! File fileName = new File(SaveAs.getSelectedFile() + ".txt");
File file = saveAsFileChooser.getSelectedFile();
if (!file.getName().endsWith(".txt")) {
file = new File(file.getAbsolutePath() + ".txt");
}
BufferedWriter outFile = null;
try {
outFile = new BufferedWriter(new FileWriter(file));
textArea.write(outFile);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (outFile != null) {
try {
outFile.close();
} catch (IOException e) {}
}
}
}
private static void createAndShowGui() {
TextEditor frame = new TextEditor();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
答案 1 :(得分:2)
您似乎(虽然缺少部分代码)使用FileReader
从所选文件中读取,然后使用FileWriter
写入同一文件。很明显,这是围绕圈子进行的。
您需要调用JTextArea
方法(getText()
等)来获取文本,然后将其写入文件。
什么是this.n
?
另请注意,您正在使用catch (IOException ex) {}
静默捕获例外,即不记录任何错误 - 因此,如果出现问题,您将无法获得任何信息。
最后,您应该使用finally
关闭文件 - 如果您在try
块中执行此操作,则在异常情况下不会关闭。
更新(现在Q已被编辑):大概你的JFileChooser正在返回一个目录。然后你将“.txt”附加到它。我不认为这就是你的意思。在写入之前尝试打印fileName
。请在写完之前打印n.getText()
,然后告诉我们你的看法。还请在println
中放置一个{{1}},以便确认是否存在例外情况。
答案 2 :(得分:1)
你只需要在最后关闭你的文件,所以它会将文字写入。
示例:
BufferedWriter wr;
try { wr = new BufferedWriter(new FileWriter(path));
wr.write(edytor.getText());
wr.close();
} catch (IOException ex) {
Logger.getLogger(Okno.class.getName()).log(Level.SEVERE, null, ex);
}