我用AWT开发应用程序,我使用JTextarea显示一些字符串值,值从数据库中检索。在这我想删除JTextarea中的特定字符串,我已经尝试了很多,但我不能.Plz给我的建议。 我的代码
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.
}
}
答案 0 :(得分:2)
尝试
taNames.setText( taNames.getText.replaceAll( client_Name, "" ) )