除了某些存储为字符串的单词外,如何将 JTextArea 中的文本写入文件?
How can I write the text from JTextArea to a file except certain words stored as strings?
基本上,我构建了一个界面,将用户的输入输入到文本区域中。按 Control + C 后,用户将输入保存到 file.txt。
界面默认有两个文本:一个在程序启动时显示 ("Please enter your text in here!"),另一个在用户按 Control + C 键后成功保存文本时显示 ("Text added successfully!")。
问题是通过使用 Control + C 键,用户甚至可以保存我上面提到的那两个默认文本。我正在使用 keyListener 来实现我的目标,它工作得很好。另外,我写了一个 "If" 语句来排除这两个默认文本,但它不起作用。
txtArea.addKeyListener(new KeyListener() {
@Override
public void keyTyped(KeyEvent e) {
}
@Override
public void keyPressed(KeyEvent e) {
String notThisTxt = txtArea.getText();
String text1 = "Please enter your text in here!";
String text2 = "Text added successfully!";
if(!notThisTxt.contentEquals(text1) || !notThisTxt.contentEquals(text2)) {
if ((e.getKeyCode() == KeyEvent.VK_C) && e.isControlDown()) {
try {
file.createNewFile();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
FileWriter fw = null;
String someSpace = " ";
BufferedWriter br = null;
try {
fw = new FileWriter(file.getAbsoluteFile(), true);
br = new BufferedWriter(fw);
br.write(someSpace);
txtArea.write(br);
}catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}finally {
}try {
br.close();
fw.close();
}catch(IOException e2) {
System.out.println("The programm doesn't want to close!" + e2);
}
}
txtArea.setText(txtAdded);
}
else{
System.out.println("test");
}
}
@Override
public void keyReleased(KeyEvent e) {
}
});
我希望从这段代码中获取用户可能输入的所有文本并将其保存为 file.txt,但包含默认文本的 2 个字符串除外。
if (!notThisTxt.contentEquals(text1) || !notThisTxt.contentEquals(text2))
将始终计算为真,因为一个字符串不可能同时等于两个不同的字符串。 notThisTxt 保证至少不等于其中之一。
您可能是想检查 notThisTxt ≠ text1 和 notThisTxt ≠ text2.
您想编写代码来准确执行上述句子。具体来说,您需要使用“and”(&&
)而不是“or”(||
)。
基本上,我构建了一个界面,将用户的输入输入到文本区域中。按 Control + C 后,用户将输入保存到 file.txt。
界面默认有两个文本:一个在程序启动时显示 ("Please enter your text in here!"),另一个在用户按 Control + C 键后成功保存文本时显示 ("Text added successfully!")。
问题是通过使用 Control + C 键,用户甚至可以保存我上面提到的那两个默认文本。我正在使用 keyListener 来实现我的目标,它工作得很好。另外,我写了一个 "If" 语句来排除这两个默认文本,但它不起作用。
txtArea.addKeyListener(new KeyListener() {
@Override
public void keyTyped(KeyEvent e) {
}
@Override
public void keyPressed(KeyEvent e) {
String notThisTxt = txtArea.getText();
String text1 = "Please enter your text in here!";
String text2 = "Text added successfully!";
if(!notThisTxt.contentEquals(text1) || !notThisTxt.contentEquals(text2)) {
if ((e.getKeyCode() == KeyEvent.VK_C) && e.isControlDown()) {
try {
file.createNewFile();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
FileWriter fw = null;
String someSpace = " ";
BufferedWriter br = null;
try {
fw = new FileWriter(file.getAbsoluteFile(), true);
br = new BufferedWriter(fw);
br.write(someSpace);
txtArea.write(br);
}catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}finally {
}try {
br.close();
fw.close();
}catch(IOException e2) {
System.out.println("The programm doesn't want to close!" + e2);
}
}
txtArea.setText(txtAdded);
}
else{
System.out.println("test");
}
}
@Override
public void keyReleased(KeyEvent e) {
}
});
我希望从这段代码中获取用户可能输入的所有文本并将其保存为 file.txt,但包含默认文本的 2 个字符串除外。
if (!notThisTxt.contentEquals(text1) || !notThisTxt.contentEquals(text2))
将始终计算为真,因为一个字符串不可能同时等于两个不同的字符串。 notThisTxt 保证至少不等于其中之一。
您可能是想检查 notThisTxt ≠ text1 和 notThisTxt ≠ text2.
您想编写代码来准确执行上述句子。具体来说,您需要使用“and”(&&
)而不是“or”(||
)。