Crie um novo botão Java Swing

JButton button = new JButton("Button text");

frame.add(button);
Mikicrep