Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

in order to create a customizable primefaces theme. I would like to generate a jar

my folder structure is:

- jar
   - META-INF
     - resources
       - Primefaces-myrtheme
         - theme.css
         - images

I tried with the following command:

> Jar-cvf nameOfMyTheme.jar

but its not working: (

share|improve this question
2  
What does "it is not working" mean? Do you get an error? If yes, then post the error message. – Jesper Oct 2 '12 at 9:13
There's no command named Jar-cvf. Put a space between jar and the option letters cvf: jar cvf nameOfMyTheme.jar xyz – Jesper Oct 2 '12 at 9:15

closed as too localized by EJP, Justin Ethier, Filburt, Andrew, Jason Sturges Oct 3 '12 at 15:59

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 0 down vote accepted

You haven't given any input files for your command..

You need to do it like this: -

jar cvf nameOfMyTheme.jar YourClass.class

Take a look at this... http://docs.oracle.com/javase/tutorial/deployment/jar/build.html

share|improve this answer
I tried with this command : d:\...>jar> jar -cvf mytheme.jar resources but i get this error: resources; fichier ou repertoire introuvable. manifest ajouté – berber5 Oct 2 '12 at 9:19
It work !!! d:\...>jar>META-INF> jar -cvf myTheme.jar resources thank you – berber5 Oct 2 '12 at 9:22
@berber5.. You're welcome.. and what was that error, you posted in your last comment?? That's not English.. – Rohit Jain Oct 2 '12 at 9:23
ah sorry it's french. it means "file or directory not found" and "manifest added" – berber5 Oct 2 '12 at 9:40
@berber5.. Oh I see.. I will learn french in the near future.. But for now, I only know English :) – Rohit Jain Oct 2 '12 at 9:44

You would need to tell the jar command where to find your class files and resource files and any additional information you would like to have in the Manifest file. Information on using the jar command can be found here.

The -cvf command takes this format.

jar c[v0M]f jarfile [-C dir] inputfiles [-Joption]
share|improve this answer

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