Tony
Tony

Reputation: 3409

Share java files in Eclipse

I am using Eclipse to develop a Java program. If I want to share the code (Java files) with someone else (who is also using Eclipse), what would be the easiest way? We do not have a source repository set up yet.

Upvotes: 1

Views: 6519

Answers (3)

Chad
Chad

Reputation: 892

TortoiseSVN is a free subversion tool you and your friend can download.

http://tortoisesvn.net/

It would be most beneficial if you went ahead and set up your repository now, rather than later, especially since you are both interested in starting development.

Upvotes: 1

Sujay
Sujay

Reputation: 6783

I would strongly suggest to consider setting up a source repository for your usage. Meanwhile, you can try something like this:

Export your project files: (After selecting your project), File > Export > General > Archive File

The import option works almost in the same way.

Upvotes: 1

Henry Harris
Henry Harris

Reputation: 630

You can send them the example.java files via email or Skype and they could add them to their project if you wanted to go old school.
I think a repository like Github or Subversion will be your best bet.

I vote for setting up a repository :)

Upvotes: 7

Related Questions