Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.Properties;

public class Main {

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

        prop.put("Chapter Count", "200");
        prop.put("Tutorial Count", "15");

        // create a output and input as a xml file
        FileOutputStream fos = new FileOutputStream("properties.xml");
        FileInputStream fis = new FileInputStream("properties.xml");

        // store the properties in the specific xml
        prop.storeToXML(fos, null);

        // load from the xml that we saved earlier
        prop.loadFromXML(fis);

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

    }
}