您好,登錄后才能下訂單哦!
利用Java怎么獲取文本框中的內容?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
具體代碼如下:
import java.io.*; import javax.swing.*; import java.awt.FlowLayout; import java.awt.event.*; public class WriterTo extends JFrame implements ActionListener{ JButton b;JTextField t; public WriterTo(){ super("文本框內容寫入文件"); JLabel l=new JLabel("請輸入內容:"); t=new JTextField(20); b=new JButton("寫入"); b.addActionListener(this); this.add(l); this.add(t); this.add(b); this.setLayout(new FlowLayout()); this.pack(); this.setVisible(true); } public void actionPerformed(ActionEvent e) { if(e.getSource()==b){ if(t.getText().equals("")){ JOptionPane.showMessageDialog(null,"請輸入內容~","錯誤",JOptionPane.ERROR_MESSAGE); t.grabFocus(); }else{ write(t.getText()); JOptionPane.showMessageDialog(null,"寫入成功","提示",JOptionPane.INFORMATION_MESSAGE); } } } public void write(String line){ try{ File f=new File("C:\\Users\\Administrator\\Desktop\\java\\就是這里.txt");//向指定文本框內寫入 FileWriter fw=new FileWriter(f); fw.write(line); fw.close(); }catch(Exception e){ } } public static void main(String[] args) { new WriterTo(); } }
看完上述內容,你們掌握利用Java怎么獲取文本框中的內容的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。