You could use sendKeys method to send specific key strokes like -
driver.findElement("locator").sendKeys(Keys.Enter)
I used Enter, you could use any other key.
See this for more on Keys -
http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/Keys.html
~ seleniumtests.com