0
我正在为我的项目使用weka。但在下面的行中获取错误信息“找不到类weka.core.FastVector”。我已经通过添加外部jar文件从项目的构建路径添加了weka.jar。我应该如何解决这个问题?非常感谢您花时间回顾我的问题。找不到类'weka.core.FastVector',
import weka.core.Attribute;
import weka.core.FastVector;
import weka.core.Instance;
import weka.core.Instances;
FastVector atts;
private void setUpARFF(){
atts = new FastVector();}
非常感谢您的评论。我的文章可能不够清楚。其实我遇到的问题不是关于FastVector类。我在这个LINK发布另一个问题:http://stackoverflow.com/questions/17399901/weka-class-cannot-be-initialized-invocationtargetexception – Foreverniu