| remove() | ใช้ลบข้อมูลออกจาก Properties |
|---|
method:remove ( object_string_key );
return type:void
content:ใช้ลบข้อมูลออกจาก Properties
example:Properties properties = new Properties (); properties.put ( "bamboo", "ไม้ไผ่" ); properties.put ( "lab", "ห้องปฏิบัติการ" ); properties.put ( "code", "รหัส" ); properties.remove ( "lab" );