Galera como faço para colocar esta ação neste meu menu ???
public class TrataEventoDesktop implements ActionListener
{
public void actionPerformed( ActionEvent evento )
{
if ( evento.getSource() == sql )
{
new ConsultaSQL ();
}
if ( evento.getSource() == sair )
{
System.exit (0);
}
if ( evento.getSource() == inserir )
{
new Ferramentas();
}
if ( evento.getSource() == ajuda )
{
[b]Runtime.getRuntime().exec("cmd || command /c start C:/teste.doc");[/b]
}
if ( evento.getSource() == ferramental )
{
new Relatorio();
}
}
}
Ele solicita que eu entre com trows Exception
Mas não tô conseguindo faze-lo …
Qual é a sintaxe, neste caso ??/
Abraço