Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import javax.swing.JOptionPane;

public class Main {
    public static void main(String[] args) {
        String response = JOptionPane.showInputDialog("Please enter.");

        if (response == null) {
            System.out.println("cancelled.");
        } else {
            System.out.println("entered:  " + response);
        }

    }
}