本文整理汇总了Java中com.subgraph.orchid.directory.DocumentFieldParserImpl类的典型用法代码示例。如果您正苦于以下问题:Java DocumentFieldParserImpl类的具体用法?Java DocumentFieldParserImpl怎么用?Java DocumentFieldParserImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DocumentFieldParserImpl类属于com.subgraph.orchid.directory包,在下文中一共展示了DocumentFieldParserImpl类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readDocument
import com.subgraph.orchid.directory.DocumentFieldParserImpl; //导入依赖的package包/类
private HSDescriptor readDocument(HSDescriptorDirectory dd, ByteBuffer body) {
DocumentFieldParserImpl fieldParser = new DocumentFieldParserImpl(body);
HSDescriptorParser parser = new HSDescriptorParser(hiddenService, fieldParser, hiddenService.getAuthenticationCookie());
DescriptorParseResult result = new DescriptorParseResult(dd);
parser.parse(result);
return result.getDescriptor();
}
示例2: createFieldParser
import com.subgraph.orchid.directory.DocumentFieldParserImpl; //导入依赖的package包/类
private DocumentFieldParser createFieldParser(String s) {
ByteBuffer buffer = ByteBuffer.wrap(s.getBytes(Tor.getDefaultCharset()));
return new DocumentFieldParserImpl(buffer);
}