我正在尝试使用Jsoup在html页面中查找元素,我需要使用getElementsByAttributeValue
类以及所有getElement
类。
netbeans 8.0中显示的错误是:
“找不到符号”
所以我想我没有在程序的头部导入正确的类。那么我需要“导入”才能使用getElement
类,或者问题不在“导入”的事情中?
顺便说一句,我不能使用getElement
中的任何一个(不仅是getElementsByAttributeValue
)而且我正在使用其他类的Jsoup,就像select一样没有问题。
答案 0 :(得分:0)
getElementsByAttributeValue 是 org.jsoup.nodes.Element 类的方法,因此如果您拥有此类的对象,则应该能够访问该方法。< / p>
答案 1 :(得分:0)
好的,有些我用这段代码解决了这个问题:
`package sectors;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.extractor.XWPFWordExtractor;
public class TomaDatos {
public void nombre()throws IOException{
String ubic = "D:\\Varios\\Trabajo\\Bolsa\\sectorpp.docx";
FileInputStream file = new FileInputStream(new File(ubic));
XWPFDocument doc = new XWPFDocument(file);
XWPFWordExtractor ex = new XWPFWordExtractor(doc);
}
}`
我真的不知道问题究竟在哪里。唯一重要的变化是在这里的“新”句子之后添加XWPF:XWPFWordExtractor ex = new XWPFWordExtractor(doc);
但请求我,我之前尝试过并且没有工作。也许是netbeans的问题。对不起,我无法找到错误,无论如何,希望这项工作适合某人......