org.apache.flink.core.fs.Path.suffix()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(91)

本文整理了Java中org.apache.flink.core.fs.Path.suffix()方法的一些代码示例,展示了Path.suffix()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Path.suffix()方法的具体详情如下:
包路径:org.apache.flink.core.fs.Path
类名称:Path
方法名:suffix

Path.suffix介绍

[英]Adds a suffix to the final name in the path.
[中]为路径中的最终名称添加后缀。

代码示例

代码示例来源:origin: apache/flink

this.actualFilePath = (numTasks > 1 || outputDirectoryMode == OutputDirectoryMode.ALWAYS) ? p.suffix("/" + getDirectoryFileName(taskNumber)) : p;

代码示例来源:origin: apache/flink

@Test
public void testSuffix() {
  Path p = new Path("/my/path");
  p = p.suffix("_123");
  assertEquals("/my/path_123", p.toUri().getPath());
  p = new Path("/my/path/");
  p = p.suffix("/abc");
  assertEquals("/my/path/abc", p.toUri().getPath());
  p = new Path("C:/my/windows/path");
  p = p.suffix("/abc");
  assertEquals("/C:/my/windows/path/abc", p.toUri().getPath());
}

代码示例来源:origin: org.apache.flink/flink-core

this.actualFilePath = (numTasks > 1 || outputDirectoryMode == OutputDirectoryMode.ALWAYS) ? p.suffix("/" + getDirectoryFileName(taskNumber)) : p;

代码示例来源:origin: com.alibaba.blink/flink-core

this.actualFilePath = (numTasks > 1 || outputDirectoryMode == OutputDirectoryMode.ALWAYS) ? p.suffix("/" + getDirectoryFileName(taskNumber)) : p;

相关文章