MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

public class MainClass {
    public static void main(String[] a) {
        String oldValue = System.clearProperty("java.class.path");
        System.setProperty("user.dir", "C:/MyProg");
        System.out.println(System.getProperty("user.dir"));
    }
}