user472221
user472221

Reputation: 3114

making a jar file

I have written a code for client/server application. and I go to

properties>packaging

for making a jar file for it. but when I run my server side and then client side ! it doesn't make the jar file for my application! what should I do? please help me thanks

Upvotes: 0

Views: 376

Answers (2)

Fortyrunner
Fortyrunner

Reputation: 12782

If you are a real beginner I suggest that you follow the Java Tutorials

Especially the one on Jar files

Upvotes: 0

Jigar Joshi
Jigar Joshi

Reputation: 240860

Use this to make an executable jar

jar cf jar-file input-file(s)  

or alternatively you can write ant script to do the same

Upvotes: 2

Related Questions