Saurav Suman wrote:is it helpful to make executable file in java swing
You cannot "make executable file" in java swing. Like I mentioned before exe files will tie you down to the windows platform. Since Java is platform independent, the recommended approach is self executable jar files which you mentioned you already have. Just like any "exe", this jar can be double clicked to bring up the application (provided JRE is installed)
Frankly speaking, what you are posting here is a bit confusing for me. What exactly is the problem you are trying to solve here?