summaryrefslogtreecommitdiffstats
path: root/Master/Reference Architectures and Patterns/hjp5/examples/Listing1608.java
blob: 3532d1445e2cc90ac99324120750a42cc1a2f94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Listing1608.java */

import java.io.*;

public class Listing1608
{
  public static void main(String[] args)
  {
    try {
      Runtime.getRuntime().exec("notepad");
    } catch (Exception e) {
      System.err.println(e.toString());
    }
  }
}