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

I have a program develop for web application(java). I need to send my project to a friend. How can I export all my project and my mysql database to send to him.

Regards

share|improve this question
You can use a version control system (such as Git or Mercurial for example, which are available in Netbeans) - save your projet (including the database) to a free online version control repository (for example bitbucket, there are plenty), give access to your repository to your friend who can then download the whole project in one click, and upload changes in one click, that you can in turn download in one click... – assylias Mar 13 '12 at 22:49
zip file + mysqldump? – beerbajay Mar 13 '12 at 22:53

2 Answers

up vote 5 down vote accepted

There is a good plugin for that on Netbeans : Export As Archive.

You can find more information about it there : Export As Archive Plugin

You can also use mysqldump to dump your databases.

Another good way to do this is to use a Repository (with your project inside) with Mercurial (included in NetBeans too) - BitBucket.

You give an access to your friend and you can Commit whenever you make any change. It will protect you and your friend of making mistakes.

share|improve this answer
Thanks a lot man – Camus Mar 22 '12 at 3:17
  1. Take all your java project and source files and zip them all into a file.
  2. Use mysqldump to dump all your database into a file.
  3. Zip everything and send the files to your friends :)
share|improve this answer
1.a Remove the directory .nbproject/private – madth3 Mar 13 '12 at 23:07

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.