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

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -