how convert java file to jar files?
Answers were Sorted based on User's Feedback
Answer / uv
As far as I am aware about jar files, they are used to
archive the class files and not java files...
If you want to create a jar file for class files, you can
use following command:
cmd:\> jar cvf <name>.jar .
where (.) is for the current directory.
| Is This Answer Correct ? | 96 Yes | 34 No |
Answer / syamsunder
We can convert the filename and .classFile name by using command prompt...........like this
jar -cvf <filename.jar> <filename.class>
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / patrick hp
Write:
jar -cvf <nome>.jar *.class
e aperte enter, assim como a pessoa q fez a 5ยช resposta disse.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ankit
> jar -cmf <manifestFile> <nameofjarfile.jar><filestobeincluded>
for eg
jar -cmf Whereismain.txt abc.jar xyz
c-tells the jar to create an archive
m-used to create and include manifest file(consist the info
which class contains the main() method)
f-specifies the name of the archive to be created.
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / jay
just go to file menu AND CLICK ON THE OPTION EXPORT/EXPORT
AS JAR FILE/CREATE JAR FILE
| Is This Answer Correct ? | 2 Yes | 4 No |
Answer / srinu
To convert Java files to jar files is easily
cmd:/>mkdir java
cmd:/>cd java
cmd:\java> jar CVF Filename.jar
Then create jar file your specified Directory
| Is This Answer Correct ? | 16 Yes | 36 No |
Explain Life cycle of Servlet Filter.
2 Answers InfoBrain, ITC Infotech,
What are the methods used for inter-thread communication? and in what class these methods are defined?
Which container method is used to cause a container to be laid out and redisplayed?
Have you used threads in Servelet?
Explain what is orm?
Explain the stub's and skeleton's functionality?
Write a program on RMI and JDBC using StoredProcedure?
how the mapping can be done from jsp to actionservlet?
Explain what is synchronization?
What is multi-tasking? Types?
What is the difference between static and non-static with examples?
Why do threads block on i/o?