Java Command Line Jar File -
i've created few .jar files (using eclipse's export feature), guis. want create .jar file strictly command-line; possible?
there no such thing "gui jar" or "command line jar". if want program work on command line, read , write system.in , system.out or files rather using swing or awt.
if on other hand asking how create jar on command line, command is, not surprisingly "jar". in jar cf foo.jar com/my/foo/*.class
Comments
Post a Comment