您好,我有 3 个字段标题、内容、网址,我创建了索引添加了一些文档
Document doc = new Document();
doc.add(new TextField("title", title, Field.Store.YES));
doc.add(new TextField("content", title, Field.Store.YES));
doc.add(new StringField("url", isbn, Field.Store.NO));
w.addDocument(doc);
我可以使用索引编写器读取索引并迭代并接收字段标题,内容我如何接收字段 url?