X-Received: by 10.236.97.99 with SMTP id s63mr28737774yhf.40.1429602758366; Tue, 21 Apr 2015 00:52:38 -0700 (PDT) X-Received: by 10.50.30.197 with SMTP id u5mr29189igh.5.1429602758337; Tue, 21 Apr 2015 00:52:38 -0700 (PDT) Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!z60no2919478qgd.0!news-out.google.com!db6ni21612igc.0!nntp.google.com!l13no8026991iga.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.java.help Date: Tue, 21 Apr 2015 00:52:37 -0700 (PDT) In-Reply-To: <8qrlcvgc8gjjd8bssb737dml87oitov4ih@4ax.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=203.101.118.42; posting-account=LsMhGgoAAAD6ZimZ8dUsTa2MHb3MEy7Q NNTP-Posting-Host: 203.101.118.42 References: <8qrlcvgc8gjjd8bssb737dml87oitov4ih@4ax.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Where are Java System Properties stored? From: khushankkashyap9@gmail.com Injection-Date: Tue, 21 Apr 2015 07:52:38 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: csiph.com comp.lang.java.help:3299 On Wednesday, May 21, 2003 at 8:45:50 AM UTC+5:30, Roedy Green wrote: > On Tue, 20 May 2003 10:50:41 -0400, "Jiong Tang" > wrote or quoted : > > >It gives me a quite long list. But I am wondering where do they come from? > >Are they stored somewhere in a file and etc? > > They are not stored. They are generated by a native method. > > -- > Canadian Mind Products, Roedy Green. > Coaching, problem solving, economical contract programming. > See http://mindprod.com/iraq.html for links about the Iraq war. Hi, For the above query i wanted to know whether i can access the system property explicitly through following code: Properties p = System.getProperties(); p.put("check_value", "true"); System.setProperties(p); now the property is returning null when i access it in different process/application with System.getProperty("check_value"). is there any way by which we can set the system property which is accessible to all the processes