-3

i stalled weka in my system but still im having problem to use weka classes in my java code?

im using netbean its show me class file not available when i try to import my weka class?

j0k
  • 22,600
  • 28
  • 79
  • 90

3 Answers3

1

The package view of a weka test project :

enter image description here

NeptuneZ
  • 608
  • 1
  • 10
  • 23
0

1) Adding weka.jar into your Java project classpath.

2) Importing the class you want to load like this import weka.XXX.XXX;.

Make sure the above two simple steps is done. Any question :)

Yongfeng
  • 345
  • 1
  • 3
  • 15