Package hw
Class Console

Public Method getKeys

static String getKeys()

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns Description
keys reads multiple characters at once from the console

This method waits for an input from the iLCD Manager XEJoC Manager console. Each character entered into the console is immediately transmitted to the panelJoC board. The getKeys() method stops the processing of the Java application until the enter key on the keyboard is pressed.

Note

Example

      String str = Console.getKeys();
      Console.println(str);