我使用AWT開發應用程序,並使用JTextarea顯示一些字符串值,值從數據庫中檢索。在這個我想要刪除JTextarea中的特定字符串,我嘗試了很多,但我不能.Plz給我的建議。 我的代碼刪除JTextarea中的特定字符串
for (Entry<String, String> entry : checkList.entrySet()) {
String client_Name=entry.getKey();
if(!liHashMap.containsKey(client_Name))
{
checkList.remove(client_Name);
taNames.setText("");//But It removes all values
//here i want to remove the particular client_Name from
JTextarea.
}
}
* 「與AWT開發應用,我用的JTextArea」 *然後你很困惑。 ['JTextArea'](http://docs.oracle.com/javase/7/docs/api/javax/swing/JTextArea.html)是基於AWT的** Swing **等效** ['TextArea' ](http://docs.oracle.com/javase/7/docs/api/java/awt/TextArea.html)**。 – 2013-05-08 13:56:18