導航:首頁 > 編程語言 > java後台獲取textarea的值

java後台獲取textarea的值

發布時間:2024-08-08 23:33:26

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.

閱讀全文

與java後台獲取textarea的值相關的資料

熱點內容
youtubeapp怎麼下載 瀏覽:366
編程檢測是什麼 瀏覽:753
網路攝像機的傳輸距離 瀏覽:941
超值貓qq群購秒殺群 瀏覽:138
pdf文件能備注嗎 瀏覽:174
html可視化數據源碼在哪裡 瀏覽:387
adobereader專用卸載工具 瀏覽:28
vivo手機數據如何備份 瀏覽:888
ithmb文件轉換器 瀏覽:66
看病找什麼網站好 瀏覽:579
linux如何查看文件系統 瀏覽:581
linux統計點頻率 瀏覽:627
全民泡泡大戰安琪兒升級 瀏覽:620
編程scratch如何保存 瀏覽:750
aspnetmvc傳json 瀏覽:132
如何下載看神片的狐狸視頻app 瀏覽:579
怎樣將木紋文件添加到cad 瀏覽:223
java中的hashset 瀏覽:70
mate8升級emui50嗎 瀏覽:396
網路怎麼校線 瀏覽:546

友情鏈接