I have created a java application on netbeans 7 .Now By using netbeans ihave created the jar file of application.And when am clicking it application start running.But the if i closed the application the application processed killed,but still the dist child process is running though all window closed.
Share
You probably have a variable(FileReader,…) open, remember that you need to close them close()
if its a gui application call JFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);