Here you can find the source of awtRobotKeyRelease(final Robot robot, final int keyCode, final int msDelay)
private static void awtRobotKeyRelease(final Robot robot, final int keyCode, final int msDelay)
//package com.java2s; import java.awt.Robot; public class Main { private static void awtRobotKeyRelease(final Robot robot, final int keyCode, final int msDelay) { robot.keyRelease(keyCode);/*from w w w .ja v a2s . c o m*/ robot.delay(msDelay); } }