-3

I'm new to sourceforge cvs. I just downloaded a Java project's source code through cvs. But when I try to run the it, it gives me java.lang.ClassNotFoundException. And I noticed that there is no bin folder created after i hit the 'run' button.

I don't understand what is going on.

Burhan Ali
  • 2,258
  • 1
  • 28
  • 38
fred
  • 55
  • 7

1 Answers1

1

Many a times developer doesn't store .project and .classpath files in repository. So, first check if .project and .classpath are present in your project's root folder.

  • If No:
    • Then create a Java Project out of your source and add classpath dependencies.
  • If Yes:
    • Then update classpath (build path)

After it, you need to compile your project.

You can google for how to create a Java Project and add classpath in Eclipse, internet is flooded with such examples

vineet
  • 336
  • 2
  • 11