When you create, add a ActionListener to it.
something like:
ActionListener al = new ActionListener() {
public void actionProformed( ActionEvent e ) {
System.out.println( ((JMenuItem)e.getSource() ).getTitle() );
}
}
for( String bob : strings ) {
JMenuItem mi = new JMenuItem( bob );
mi.addActionListener( al );
menuBar.add( mi );
}