import java.util.*;
class JavaExampleProperty
{
public static void main(String as[])
{
Properties Prprties = new Properties();
Set St;
String OutStrng;
Prprties.setProperty("Property Zero", "Value Zero");
Prprties.setProperty("Property One", "Value One");
Prprties.setProperty("Property Two", "Value Two");
Prprties.setProperty("Property Three", "Value Three");
Prprties.setProperty("Property Four", "Value Four");
Prprties.setProperty("Property Five", "Value Five");
Prprties.setProperty("Property Six", "Value Six");
OutStrng = Prprties.getProperty("Property Three","Missing");
System.out.println(OutStrng);
OutStrng = Prprties.getProperty("Property Seven", "Missing");
System.out.println(OutStrng);
}
}
Dinesh Thakur holds an B.C.A, MCSE, MCDBA, CCNA, CCNP, A+, SCJP certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps. For any type of query or something that you think is missing, please feel free to Contact us.
Related Articles
Basic Courses
Advance Courses