In the future, Swing related questions should be posted in the Swing forum.
Once the table has focus it works fine for me. Here is my test program:
import java.awt.*;
import javax.swing.*;
public class AppletTest extends JApplet
{
public void init()
{
JTable table = new JTable(5, 5);
getContentPane().add(table);
}
}