HOME      BLOG       FORUMS      CONTACT       ABOUT

Removes a system property value

Removes a system property value

public class SystemExample {
	public static void main(String[] args) {
		System.clearProperty("user.name");
		String value = System.getProperty("user.name");

		System.out.println(value);
	}
}

Share

Tags: , , ,


You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

AddThis Social Bookmark Button

Leave a Reply