/**
* Check if the document has been already grobidified.
*/
public boolean isGrobidified(String repositoryDocId, String version) {
GridFS gfs = new GridFS(db, MongoCollectionsInterface.GROBID_TEIS);
BasicDBObject whereQuery = new BasicDBObject();
whereQuery.put("repositoryDocId", repositoryDocId);
whereQuery.put("version", version);
List<GridFSDBFile> fs = null;
boolean result = false;
fs = gfs.find(whereQuery);
if (fs.size() > 0) {
result = true;
} else {
result = false;
}
return result;
}
MongoFileManager.java 文件源码
java
阅读 33
收藏 0
点赞 0
评论 0
项目:anhalytics-core
作者:
评论列表
文章目录