creating jar files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shreya
    New Member
    • Sep 2006
    • 17

    #1

    creating jar files

    I am creating jar file named post.jar

    postclient(fold er) contains -------post(folder),mf .txt

    jar -cmf mf.txt post.jar

    but post.jar contains only mf.txt i want all the contents of the folder post

    Pls help
  • tyreld
    New Member
    • Sep 2006
    • 144

    #2
    Originally posted by shreya
    I am creating jar file named post.jar

    postclient(fold er) contains -------post(folder),mf .txt

    jar -cmf mf.txt post.jar

    but post.jar contains only mf.txt i want all the contents of the folder post

    Pls help
    You need to tell jar what to include.

    jar -cmf mf.txt post.jar post/*

    Comment

    • shreya
      New Member
      • Sep 2006
      • 17

      #3
      Originally posted by tyreld
      You need to tell jar what to include.

      jar -cmf mf.txt post.jar post/*
      Thanks very much.

      Comment

      Working...