I want to start Java Stand alone(Swing) application without dos prompt to open? [closed]
I want to ru开发者_如何学Cn a Java Stand Alone application(Swing) without the command prompt window to open. How to achieve it? Another question is i want my login screen on the top of an Background Image file. How to achieve this? Pl. give me example code also.
I'm just going to answer the first question....
In Windows create a bat file
@echo off
start javaw -jar [jarfile]
exit
精彩评论