- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.opentext.ia.yaml.core.YamlMap
类的一些代码示例,展示了YamlMap
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlMap
类的具体详情如下:
包路径:com.opentext.ia.yaml.core.YamlMap
类名称:YamlMap
[英]Type-safe access to a YAML map.
[中]键入对YAML映射的安全访问。
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
public Stream<Value> values() {
return entries().map(Entry::getValue);
}
代码示例来源:origin: com.opentext.ia/infoarchive-sdk-core
private void putTemplatedFrom(YamlMap map, String name, String... destinationAndSourceNames) {
int i = 0;
while (i < destinationAndSourceNames.length) {
String destination = destinationAndSourceNames[i++];
String source = destinationAndSourceNames[i++];
putTemplated(map.get(source), destination, name);
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private YamlMap convertIndex(YamlMap index) {
String type = index.get(TYPE).toString();
index.remove(TYPE);
return new YamlMap().put(type, index);
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void ensureMember(YamlMap yaml, String member) {
if (!yaml.containsKey(member)) {
yaml.put(member, new YamlMap());
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private YamlMap expand(YamlMap root, String prefix) {
return new YamlMap()
.put("prefix", prefix)
.put("uri", NamespaceUri.byPrefix(root, prefix));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void replaceNamespacePrefixInPath(YamlMap root, YamlMap index) {
index.put(PATH, replacePrefixes(root, index.get(PATH)));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void includeEntry(String key, String type, String collection, Value value, YamlMap target) {
Value targetValue = target.containsKey(type) ? target.get(type) : target.get(collection);
if (targetValue.isEmpty()) {
target.put(key, value);
return;
}
if (!canConfigure(value)) {
return;
}
if (!canConfigure(targetValue)) {
target.remove(type)
.remove(collection)
.put(key, value);
return;
}
if (target.containsKey(type)) {
target.replace(type, collection, Collections.singletonList(targetValue));
}
YamlSequence values = target.get(collection).toList();
if (value.isList()) {
values.addAll(value.toList());
} else {
values.add(value);
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
YamlMap yaml = visit.getMap();
yaml.replace(QUERY, yaml.get(QUERY, TEXT));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void appendText(YamlIndent indent, int currentLineLength, String text, StringBuilder builder) {
if (needsToBeSingleQuoted(text)) {
appendSingleQuoted(text, builder);
} else if (needsToBeDoubleQuoted(text)) {
appendDoubleQuoted(text, builder);
} else if (MAX_LINE_LENGTH < currentLineLength + text.length()) {
appendWrappedText(indent.inText(), currentLineLength, text, builder);
} else {
builder.append(text);
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
public static YamlMap from(InputStream yaml, boolean canReset) {
assertNotNull(yaml);
InputStream input = canReset ? yaml : inMemoryCopyOf(yaml);
YamlMap result = new YamlMap();
try {
for (Object data : newLoader().loadAll(input)) {
result.putAll(new YamlMap(data));
}
} catch (MarkedYAMLException e) {
try {
input.reset();
throw yamlSyntaxErrorPrettifier.apply(e, IOUtils.toString(input, StandardCharsets.UTF_8));
} catch (IOException ignored) {
// NOTREACHED
}
}
return result;
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
protected void visitContent(Visit visit, YamlMap content) {
getIndexParents(content)
.filter(Value::isMap)
.map(Value::toMap)
.filter(map -> map.containsKey(INDEXES))
.flatMap(map -> map.get(INDEXES).toList().stream())
.map(Value::toMap)
.filter(map -> map.entries().count() == 1)
.flatMap(YamlMap::entries)
.map(Entry::getValue)
.map(Value::toMap)
.filter(map -> map.containsKey(PATH))
.forEach(map -> replaceNamespacePrefixInPath(visit.getRootMap(), map));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void addExternalResourceFiles(File base, YamlMap yaml) {
yaml.visit(visit -> {
YamlMap map = visit.getMap();
if (map.containsKey(RESOURCE)) {
Value resource = map.get(RESOURCE);
if (resource.isList()) {
ListIterator<Value> iterator = resource.toList().listIterator();
while (iterator.hasNext()) {
addExternalResourceFile(base, iterator.next(), path -> iterator.set(new Value(path)));
}
} else {
addExternalResourceFile(base, map.get(RESOURCE), path -> map.put(RESOURCE, path));
}
}
});
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
public void accept(Visit visit) {
YamlMap yaml = visit.getMap();
if (yaml.containsKey(RESOURCE)) {
yaml.replace(RESOURCE, prefix + yaml.get(RESOURCE));
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-sdk-core
private void putValueList(YamlMap map, String valueListProperty, String valueListName, String format,
String name) {
map.get(valueListProperty).toMap().entries().forEach(e -> {
append(valueListName, e.getKey());
putTemplated(e.getValue(), format, name, e.getKey());
});
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private Stream<YamlMap> streamOfType(String type) {
String collection = English.plural(type);
if (yaml.containsKey(collection)) {
return yaml.get(collection).toList().stream().map(Value::toMap);
}
if (yaml.containsKey(type)) {
return Stream.of(yaml.get(type).toMap());
}
return Stream.empty();
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private Stream<YamlMap> toTextMaps(YamlMap source) {
return source.get(TEXT).toList().stream()
.map(text -> YamlMap.from(source).put(TEXT, text));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
@Override
void visitContent(Visit visit, YamlMap content) {
String xml = translateToXml(visit.getRootMap(), content.get(itemProperties).toList(),
content.get(NAMESPACES).toList());
content
.put("format", "xml")
.remove(NAMESPACES)
.put(TEXT, xml);
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void appendEntry(YamlIndent indent, Map.Entry<String, Object> entry, StringBuilder builder,
AtomicBoolean differenceFound) {
int len = builder.length();
builder.append(indent);
appendText(indent, builder.length() - len, entry.getKey(), builder);
builder.append(':');
Object value = entry.getValue();
if (value instanceof Map) {
builder.append(LINE_SEPARATOR);
appendMap(indent.inMap(), false, (Map<String, Object>)value, builder, differenceFound);
} else if (value instanceof Collection) {
appendCollection(indent, builder.length() - len, (Collection<?>)value, builder, differenceFound);
} else {
builder.append(' ');
appendValue(indent, builder.length() - len, value, builder);
}
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void include(String resource, YamlMap target) {
URI base = URI.create(resource);
ConfigurationProperties properties = propertiesIn(base);
YamlMap include = YamlMap.from(resourceResolver.apply(resource));
include.visit(includeNestedYaml(base, properties));
include.visit(new ResolveResources(resource));
include.visit(new StringSubstitutor(properties));
include.entries().forEach(entry -> includeEntry(entry.getKey(), entry.getValue(), target));
}
代码示例来源:origin: com.opentext.ia/infoarchive-yaml
private void addNamespaceDeclarations(YamlMap root, Entry entry) {
String namespaceDeclarations = entry.getValue().toMap()
.get(NAMESPACES).toList().stream()
.map(prefix -> namespaceDeclarationFor(root, prefix))
.collect(Collectors.joining(NL)) + NL;
entry.getParent()
.replace(entry.getKey(), namespaceDeclarations + entry.getValue().toMap().get("text"))
.remove(NAMESPACES);
}
将文档上传到 LiveLink 时(我们使用的是 9.7.1),文件上的原始创建数据将更改为文件上传的日期/时间。这是有道理的,但是有没有一种简单的方法来上传文件并保留文件创建日期? 第三方解决方案
我只想将每一行文本放入第一列的单元格中。 无论我设置什么设置,OpenText 都会对其进行解析。几乎尝试了一切,(给它 DataType:=xlDelimited 和 Other:=True 和 O
有一些文本文件,在 TextBox 和 TextBlock 中将许多字符显示为 �。 如何在.NET WPF中正确读取和显示这些文件? 文件读取,其中 fi 是 FileInfo。 fileText
我遇到了一个逐行读取文件的实现,如下所示: using (StreamReader reader = File.OpenText(path)) while (!reader.EndOfStream)
我目前正在进行一个涉及 OpenText Content Server 10.5 SP1 更新 2015-03 的项目。 我正在尝试找出是否有可能使用 Java SOAP Web 服务或 REST 通
我不断收到 0x800A03EC 的模糊错误代码。 我进行了大量搜索,想看看是否能找到错误的具体原因,但不幸的是,该代码似乎涵盖了多种可能的错误。我将复制并粘贴似乎给我带来问题的代码,希望有人能够就我
我是这个论坛的新人,我想分享我的智慧,你也告诉我你的。 我对 Excel 宏有足够的经验,但这个问题我找不到解决方案。 我使用 Workbooks.OpenText 打开一个文本文件以在 Excel
您好,我想使用对话框形式选择文本文件,而不必使用给定的路径。我该怎么做? 我想用 opendialog 替换 opentext?我试过了,但我想使用 streamreader 的流出现错误....
我有一个集群 OpenText Content Server 10.5 Update 2015-09 安装以及一个在 Windows 2012R2 上使用 Microsoft Cluster 运行的集
本文整理了Java中com.opentext.ia.yaml.core.YamlMap类的一些代码示例,展示了YamlMap类的具体用法。这些代码示例主要来源于Github/Stackoverflow
本文整理了Java中com.opentext.ia.yaml.core.YamlSequence类的一些代码示例,展示了YamlSequence类的具体用法。这些代码示例主要来源于Github/Sta
考虑以下几点: var lines = new List(); string path = "FileName.txt"; var reader = File.OpenText(path); whil
以下代码演示了问题标题中所述的问题。 将其复制并粘贴到新的 Microsoft Excel 2003 工作簿中。 Sub mytest() mypath = Application.GetSa
我有以下行来导入 csv 格式文件。 Workbooks.OpenText Filename:=sPath, DataType:=xlDelimited, Comma:=True, FieldInf
我正在使用(以前称为 Hummingbird Enterprise)OpenText eDocs 文档管理系统。 http://www.opentext.com/2/global/products/p
为什么我下面的代码不起作用?它突出显示 .OpenText 部分并指出: Expected function or variable Dim Indata As Excel.Workbook Set
本文整理了Java中com.opentext.ia.yaml.core.YamlMap.get()方法的一些代码示例,展示了YamlMap.get()的具体用法。这些代码示例主要来源于Github/S
本文整理了Java中com.opentext.ia.yaml.core.YamlSequence.get()方法的一些代码示例,展示了YamlSequence.get()的具体用法。这些代码示例主要来
我很确定这在以前版本的 Excel 中可以正常工作 测试文件: d/mm/yyyy hh:mm:ss 5/12/1999 6:01:12 30/11/2001 5:00:00 日期和时间之间的分隔符是
在使用 excel.Workbooks.OpenText 方法打开文本文件时,我找不到任何有关指定编码(尤其是 utf-8)的可能性的信息。我的问题是,我试图打开一个以 UTF-8 编码的 CSV 文
我是一名优秀的程序员,十分优秀!