Mega Code Archive

 
Categories / Java / Development Class
 

Clear system property

public class Main {     public static void main(String[] args) {         String key = "user.dir";         System.clearProperty(key);     } }