本文整理汇总了Java中org.apache.abdera.parser.Parser类的典型用法代码示例。如果您正苦于以下问题:Java Parser类的具体用法?Java Parser怎么用?Java Parser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Parser类属于org.apache.abdera.parser包,在下文中一共展示了Parser类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: parseInputStream
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
private static Document<Feed> parseInputStream(InputStream in) throws ParseException {
Parser parser = getAtomParser();
// set the thread context loader with the ParserClassLoader
ClassLoader old = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(parser.getClass().getClassLoader());
return parser.parse(in);
} finally {
Thread.currentThread().setContextClassLoader(old);
}
}
开发者ID:HydAu,项目名称:Camel,代码行数:12,代码来源:AtomUtils.java
示例2: getElement
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
private <T extends Element> T getElement(String url) throws IOException {
String username = "admin";
String password = "changeit";
URLConnection uc = new URL(url).openConnection();
String userpass = username + ":" + password;
String basicAuth = "Basic " + new String(Base64.getEncoder().encode(userpass.getBytes()));
uc.setRequestProperty("Authorization", basicAuth);
uc.setRequestProperty("Accept", "application/atom+xml");
Abdera abdera = new Abdera();
Parser parser = abdera.getParser();
Document<T> doc = parser.parse(uc.getInputStream(), url);
return doc.getRoot();
}
开发者ID:SoftwareSandbox,项目名称:eventstorepoc,代码行数:15,代码来源:AtomPoller.java
示例3: getElement
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
private <T extends Element> T getElement(String url) throws IOException {
String username = "admin";
String password = "changeit";
URLConnection uc = new URL(url).openConnection();
String userpass = username + ":" + password;
String basicAuth = "Basic " + new String(Base64.getEncoder().encode(userpass.getBytes()));
uc.setRequestProperty("Authorization", basicAuth);
uc.setRequestProperty("Accept", "application/atom+xml");
Abdera abdera = new Abdera();
Parser parser = abdera.getParser();
Document<T> doc = parser.parse(uc.getInputStream(), url);
return doc.getRoot();
}
开发者ID:SoftwareSandbox,项目名称:Fiazard,代码行数:16,代码来源:AtomPoller.java
示例4: CodePackageFeed
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
/**
* Construct a {@link CodePackageFeed} from an atom XML stream
*
* @param atomStream {@link InputStream}
*/
public CodePackageFeed(InputStream atomStream) {
LOGGER.debug("Loading Feed from " + atomStream);
Parser parser = Abdera.getInstance().getParser();
Document<Feed> doc = parser.parse(atomStream);
feed = doc.getRoot();
LOGGER.info("New Feed: " + feed.getTitle());
}
开发者ID:52North,项目名称:movingcode,代码行数:15,代码来源:CodePackageFeed.java
示例5: getMessagesAtom
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
private List<FeedMessageContainer> getMessagesAtom() {
List<FeedMessageContainer> messages = new ArrayList<>();
Parser parser = abdera.getParser();
Document<Feed> doc = null;
try {
doc = parser.parse(url.openStream(),url.toString());
} catch (IOException exception) {
exception.printStackTrace();
}
Feed feed = doc.getRoot();
for (Entry entry : feed.getEntries()) {
messages.add(new FeedMessageContainer(entry));
}
return messages;
}
开发者ID:CubeCraft,项目名称:KellyBot,代码行数:16,代码来源:FeedContainer.java
示例6: getAtomParser
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
/**
* Gets the Atom parser.
*/
public static Parser getAtomParser() {
return Abdera.getInstance().getParser();
}
开发者ID:HydAu,项目名称:Camel,代码行数:7,代码来源:AtomUtils.java
示例7: from
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
public static String from(Reader reader, ProgressDialogJFrame progressDialogJFrame) {
try {
Abdera abdera = new Abdera();
Parser parser = abdera.getParser();
Document<Feed> doc = parser.parse(reader);
Feed feed = doc.getRoot();
HashMap<String, Entry> entryByUri=new HashMap<String, Entry>();
logger.debug(feed.getTitle());
for (Entry entry : feed.getEntries()) {
logger.debug("\t"+entry.getTitle());
entryByUri.put(entry.getId().toString(), entry);
}
String outlineUri = null;
String outlineLabel;
String labelUri = MindRaider.labelCustodian.LABEL_TWIKI_IMPORT_URI;
MindRaider.labelCustodian.create("Atom Import", MindRaider.labelCustodian.LABEL_ATOM_IMPORT_URI);
outlineLabel = feed.getTitle()+" ("+Utils.getCurrentDataTimeAsPrettyString()+")";
logger.debug("Outline label: '"+outlineLabel+"'");
outlineUri = MindRaiderVocabulary.getNotebookUri(Utils.toNcName(outlineLabel));
String createdUri;
while (MindRaiderConstants.EXISTS.equals(createdUri = MindRaider.outlineCustodian.create(
outlineLabel,
outlineUri,
feed.getSubtitle(),
false))) {
outlineUri += "_";
}
outlineUri = createdUri;
MindRaider.labelCustodian.addOutline(labelUri, outlineUri);
OutlineResource activeOutlineResource = MindRaider.outlineCustodian.getActiveOutlineResource();
// fill in notebook resource
activeOutlineResource.save();
logger.debug("Outline created: " + outlineUri);
String parentNoteUri=activeOutlineResource.getUri();
List<Link> childrenLinks = feed.getLinks(Atomizer.ATOM_REL_CHILD_NOTE);
fromOneLevel(progressDialogJFrame, entryByUri, outlineUri, parentNoteUri, childrenLinks, activeOutlineResource);
return outlineUri;
} catch(Exception e) {
logger.debug("Unable to import Outline from Atom",e);
return null;
} finally {
// now refresh notebook outline
ExplorerJPanel.getInstance().refresh();
OutlineJPanel.getInstance().refresh();
MindRaider.spidersGraph.renderModel();
}
}
开发者ID:dvorka,项目名称:mindraider,代码行数:55,代码来源:Atomizer.java
示例8: getInputEntry
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
protected Entry getInputEntry(RequestContext request) throws IOException {
Abdera abdera = request.getAbdera();
Parser parser = abdera.getParser();
Entry inputEntry = (Entry) request.getDocument(parser).getRoot();
return inputEntry;
}
开发者ID:jyang,项目名称:google-feedserver,代码行数:7,代码来源:AbstractManagedCollectionAdapter.java
示例9: getVistaDataChunks
import org.apache.abdera.parser.Parser; //导入依赖的package包/类
/**
* Gets the vista data chunks.
*
* @param in the in
* @param patientIds the patient ids
* @return the vista data chunks
*/
public static List<VistaDataChunk> getVistaDataChunks(InputStream in, PatientIds patientIds) {
Abdera abdera = new Abdera();
Parser parser = abdera.getParser();
org.apache.abdera.model.Document<Feed> doc = parser.parse(in);
return getVistaDataChunks(doc, patientIds);
}
开发者ID:KRMAssociatesInc,项目名称:eHMP,代码行数:14,代码来源:VlerDasVitalsMapper.java
注:本文中的org.apache.abdera.parser.Parser类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论