Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How System.getProperty() method works ?

Status
Not open for further replies.

Emmaar

Programmer
Jan 7, 2003
11
0
0
GB
Hi,

I have the below line in my java code which returns HPS555P.

System.getProperty("CICS.EYE.pdpCustDetailR.packageset");

I want to know from where it picks up this value and how I can amend it.

Thanks and Regards,
Ramkumar

 
hi!

read this:


if i understood this correctly then your properties must have been set somewhere in java-code (because they are not in the above list) and can not be found in your system environment. search your code for a call to setProperty(...)

cheers

frag

patrick.metz@epost.de
 
I found that the system reads the values from a .properties file.

Thank you very much for your efforts.

Cheers,
Ramkumar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top