Clear system property: The System.clearProperty() method available in Java 1.5 : System Properties « Development Class « Java
- Java
- Development Class
- System Properties
Clear system property: The System.clearProperty() method available in Java 1.5
public class Main {
public static void main(String[] args) {
String key = "user.dir";
System.clearProperty(key);
}
}
Related examples in the same category