㈠ java Gui中如何獲取TextArea的值
可以使用 JTextArea 的 getText() 方法獲取文件內容,如下:
importjava.awt.BorderLayout;
importjavax.swing.JButton;
importjavax.swing.JFrame;
importjavax.swing.JOptionPane;
importjavax.swing.JTextArea;
importjavax.swing.JToolBar;
publicclassAppextendsJFrame{
privateJTextAreatextArea;
publicApp(){
this.setSize(400,400);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JToolBartoolBar=newJToolBar();
this.add(toolBar,BorderLayout.NORTH);
JButtonbtnTest=newJButton("獲取TextArea文本");
btnTest.addActionListener(e->{
Stringtext=textArea.getText();
JOptionPane.showMessageDialog(this,text);
});
toolBar.add(btnTest);
textArea=newJTextArea();
this.add(textArea,BorderLayout.CENTER);
}
publicstaticvoidmain(String[]args){
newApp().setVisible(true);
}
}
運行結果;
㈡ java後台判斷TextArea中的內容是否改變,將改變了的字體顏色變為紅色(
使用ajax,把TextArea的值傳復到後台並記錄這個值,制然後當TextArea值改變的時候觸發Ajax,和剛才後台記錄的值比較,並且把改變了的值提取出來,並且返回給前台,然後用js動態把那部分字體變成紅色就可以了
㈢ java里,用String接收textarea里的值
String的長度可以是零個字元至大約二十億個字元,每個字元是一個16位的Unicode值。但要看jvm可用內存是否足夠.
如果要經常修改接收到的textarea的內容,建議用StringBuffer.