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

This is what I'm doing:

$ wget wget --no-check-certificate --quiet \
https://repository.jboss.org/nexus/content/groups/public/com/sun/jersey/jersey-server/1.4/jersey-server-1.4.jar
$ tar tf jersey-server-1.4.jar
META-INF/MANIFEST.MF
META-INF/
tar: Bad ZIP file: Unexpected end-of-entry record
tar: Error exit delayed from previous errors.

Is it my mistake or a problem with the file in JBoss repository?

ps. The same story at this URL: http://download.java.net/maven/2/com/sun/jersey/jersey-server/1.4/jersey-server-1.4.jar

share|improve this question

2 Answers

up vote 2 down vote accepted

A JAR file is a form of ZIP file, not a TAR file. Use the unzip command to unpack it. Or better still, use the jar utility from your Java installation.

share|improve this answer

Try another location, actually I'm using :

wget http://download.java.net/maven/2/com/sun/jersey/jersey-server/1.4/jersey-server-1.4.jar

I've just tried it is correct

share|improve this answer
Hm, doesn't work for me either. I'm on MacOS, JDK 1.6 – yegor256 Nov 21 '10 at 8:04

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.