jak wstawić lub dołączyć nową linię do jtextarei w java swing? Chcę dołączyć jtextarea i dodać nową linię na jtextarea proszę mi pomóc, jak to zrobić.jak wstawić lub dołączyć nową linię do jtextarei w java swing?
6
A
Odpowiedz
4
Najlepszym rozwiązaniem jest bezpośrednio modyfikować stanowiącego podstawę Document
z JTextArea
.
Oto mała demonstracja to:
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Date;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.text.BadLocationException;
public class TestTextArea {
private void initUI() {
JFrame frame = new JFrame("test");
final JTextArea textarea = new JTextArea(24, 80);
JButton addText = new JButton("Add line");
addText.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
try {
textarea.getDocument().insertString(0, "New line entered on " + new Date() + "\n", null);
} catch (BadLocationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
});
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JScrollPane(textarea));
frame.add(addText, BorderLayout.SOUTH);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new TestTextArea().initUI();
}
});
}
}
1
textArea.setText("this is new line" + "\n" + textArea.getText())
9
Można to zrobić:
textArea.setText("The new text\n" + textArea.getText());
Albo, jeszcze lepszym rozwiązaniem byłoby to:
try {
textArea.getDocument().insertString(0, "The new text\n", null);
} catch (BadLocationException e) {
e.printStackTrace();
}
mam ** '\ n' ** w tekście wejściowego. Ale kiedy dodaję go do obszaru tekstowego, wypisze ** '\ n' ** jako normalny tekst. Chcę to wydrukować jako znak nowej linii. Czy to możliwe? – Prasad