Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Properties;

public class Main {

    public static void main(String[] args) throws Exception {
        Properties prop = new Properties();

        prop.setProperty("Chapter Count", "200");
        prop.put("Tutorial Count", "1500");
        prop.put("tutorial", "java2s.com");

        // print the list
        System.out.println(prop);

        // change the properties
        prop.setProperty("Tutorial Count", "15");
        prop.setProperty("Chapter Count", "500");

        // print the list
        System.out.println(prop);
    }
}