Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i use this cmd line : jar cmf arshad.mf ars.jar *.class i get this error :

invalid header field name:Manifest-version

This is my manifest file :

Manifest-Version: 1.0
Main-Class:t

i made the manifest file with notepad in UTF-8 encoding - is there any problem with the manifest ?

share|improve this question

2 Answers

up vote 7 down vote accepted

Add a space after the colons:

Manifest-Version: 1.0
Main-Class: t
share|improve this answer
wow . that was a perfect solution.thx a lot :) – arshad Jan 8 '09 at 16:18

Yes,it is true.

A common mistake people make when writing their manifest files for jar's is that they don't put spaces after their colons. I don't know, based on what you wrote here, if that's it or not but give it a try.

Example:

Main-Class:someClass //wrong
Main-Class: someClass //correct
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.