Test.java Source code

Java tutorial

Introduction

Here is the source code for Test.java

Source

import java.awt.Desktop;
import java.io.File;
import java.io.IOException;

public class Test {
    public static void main(String[] a) {
        try {
            Desktop desktop = null;
            if (Desktop.isDesktopSupported()) {
                desktop = Desktop.getDesktop();
            }

            desktop.open(new File("c:\\a.txt"));
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }

    }
}