codice:
				bSrc.addActionListener(new ActionListener()
				{
					public void actionPerformed(ActionEvent e)
					{
						Runtime rt = Runtime.getRuntime();
						String cmd = "motor.exe ";
						cmd += "prog/";
						cmd += tSk.getText();
						cmd += ".txt";
						try
						{
							Process figlio = rt.exec(cmd);
						}
						catch(IOException ioe)
						{
							System.out.println(ioe.toString());
						}
					}
				});
Cosi richiamo un app esterna fatta in C ma nn vedo nessun output