我用 AWT 开发应用程序,我使用 JTextarea 来显示一些字符串值,值是从数据库中检索的。在此我想删除 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.
}
}