Mega Code Archive

 
Categories / Java Tutorial / Development
 

Clear system property

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