How do I convert the src.zip file to jar file?
java
Solution
Generally if your ZIP contains the class files (And not the sources):
Just rename the file, a `jar` is a `zip` file. But if you're aiming for a class to be launched with command `java -jar myProject.jar` you should create a MANIFEST file containing the main-class and libraries to use in the classpath.
So in your case since you got the sources (Java file), you'll have to compile classes and create the JAR. Eclipse has an `Export as JAR` feature if you use it.
Problem
Please any one give me the suggestion for this. I'm having the Xerces-J-source.zip file and I need to convert to Xerces-J-source.jar file.