- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setExportSourceLocators()
方法的一些代码示例,展示了XTMTopicMapWriter.setExportSourceLocators()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XTMTopicMapWriter.setExportSourceLocators()
方法的具体详情如下:
包路径:net.ontopia.topicmaps.xml.XTMTopicMapWriter
类名称:XTMTopicMapWriter
方法名:setExportSourceLocators
[英]INTERNAL: Set the flag that says whether source locators should be exported or not.
[中]内部:设置是否应导出源定位器的标志。
代码示例来源:origin: ontopia/ontopia
setExportSourceLocators((Boolean) value);
代码示例来源:origin: ontopia/ontopia
writer.setVersion(XTMVersion.XTM_2_0);
writer.setExportSourceLocators(true);
writer.write(tm);
代码示例来源:origin: ontopia/ontopia
writer.setVersion(XTMVersion.XTM_2_1);
writer.setExportSourceLocators(true);
writer.write(tm);
代码示例来源:origin: ontopia/ontopia
@Test
public void testExportItemIdentifiers() throws IOException, SAXException {
prepareTopicMap();
TopicIF topic = builder.makeTopic();
LocatorIF iid = tmbase.resolveAbsolute("#id4314");
topic.addItemIdentifier(iid);
// export to file (not using export() because we need to control settings)
XTMTopicMapWriter writer = new XTMTopicMapWriter(tmfile);
writer.setVersion(version);
writer.setAddIds(true);
writer.setExportSourceLocators(false);
writer.write(topicmap);
// reread file with SAX
SearchAttributeValue handler =
new SearchAttributeValue("itemIdentity", "href", iid.getAddress(),
SearchAttributeValue.FORBIDDEN, false);
parseFile(handler);
handler.check();
}
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader类的一些代码示例,展示了XTMTopicMapReader类的具体用法。这些代码示例主要来源于
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter类的一些代码示例,展示了XTMTopicMapWriter类的具体用法。这些代码示例主要来源于
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.setFollowTopicRefs()方法的一些代码示例,展示了XTMTopicMapRe
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.read()方法的一些代码示例,展示了XTMTopicMapReader.read()的具体
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.()方法的一些代码示例,展示了XTMTopicMapReader.()的具体用法。这些代码示
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.importInto()方法的一些代码示例,展示了XTMTopicMapReader.imp
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.readAll()方法的一些代码示例,展示了XTMTopicMapReader.readAl
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapReader.setExternalReferenceHandler()方法的一些代码示例,展示了XTMT
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setFilter()方法的一些代码示例,展示了XTMTopicMapWriter.setF
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.()方法的一些代码示例,展示了XTMTopicMapWriter.()的具体用法。这些代码示
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.write()方法的一些代码示例,展示了XTMTopicMapWriter.write()的
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setAddIds()方法的一些代码示例,展示了XTMTopicMapWriter.setA
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setVersion()方法的一些代码示例,展示了XTMTopicMapWriter.set
本文整理了Java中net.ontopia.topicmaps.xml.XTMTopicMapWriter.setExportSourceLocators()方法的一些代码示例,展示了XTMTopic
我是一名优秀的程序员,十分优秀!