com.simiacryptus.util.Util.mkString()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(196)

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

Util.mkString介绍

[英]Mk string string.
[中]Mk字符串。

代码示例

代码示例来源:origin: com.simiacryptus/mindseye-labs

  1. /**
  2. * Gets test report location.
  3. *
  4. * @param sourceClass the source class
  5. * @param reportingFolder
  6. * @param suffix the suffix
  7. * @return the test report location
  8. */
  9. @Nonnull
  10. public static File getTestReportLocation(@Nonnull final Class<?> sourceClass, String reportingFolder, @Nonnull final CharSequence... suffix) {
  11. final StackTraceElement callingFrame = Thread.currentThread().getStackTrace()[2];
  12. final CharSequence methodName = callingFrame.getMethodName();
  13. final String className = sourceClass.getCanonicalName();
  14. String classFilename = className.replaceAll("\\.", "/").replaceAll("\\$", "/");
  15. @Nonnull File path = new File(Util.mkString(File.separator, reportingFolder, classFilename));
  16. for (int i = 0; i < suffix.length - 1; i++) path = new File(path, suffix[i].toString());
  17. String testName = suffix.length == 0 ? String.valueOf(methodName) : suffix[suffix.length - 1].toString();
  18. File parent = path;
  19. //parent = new File(path, new SimpleDateFormat("yyyy-MM-dd_HHmmss").format(new Date()));
  20. path = new File(parent, testName + ".md");
  21. path.getParentFile().mkdirs();
  22. logger.info(String.format("Output Location: %s", path.getAbsoluteFile()));
  23. return path;
  24. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Gets test report location.
  3. *
  4. * @param sourceClass the source class
  5. * @param suffix the suffix
  6. * @return the test report location
  7. */
  8. @Nonnull
  9. public static File getTestReportLocation(@Nonnull final Class<?> sourceClass, @Nonnull final CharSequence... suffix) {
  10. final StackTraceElement callingFrame = Thread.currentThread().getStackTrace()[2];
  11. final CharSequence methodName = callingFrame.getMethodName();
  12. final String className = sourceClass.getCanonicalName();
  13. String classFilename = className.replaceAll("\\.", "/").replaceAll("\\$", "/");
  14. @Nonnull File path = new File(Util.mkString(File.separator, "reports", classFilename));
  15. for (int i = 0; i < suffix.length - 1; i++) path = new File(path, suffix[i].toString());
  16. String testName = suffix.length == 0 ? String.valueOf(methodName) : suffix[suffix.length - 1].toString();
  17. File parent = path;
  18. //parent = new File(path, new SimpleDateFormat("yyyy-MM-dd_HHmmss").format(new Date()));
  19. path = new File(parent, testName + ".md");
  20. path.getParentFile().mkdirs();
  21. logger.info(String.format("Output Location: %s", path.getAbsoluteFile()));
  22. return path;
  23. }

代码示例来源:origin: com.simiacryptus/mindseye-test

  1. /**
  2. * Gets test report location.
  3. *
  4. * @param sourceClass the source class
  5. * @param reportingFolder
  6. * @param suffix the suffix
  7. * @return the test report location
  8. */
  9. @Nonnull
  10. public static File getTestReportLocation(@Nonnull final Class<?> sourceClass, String reportingFolder, @Nonnull final CharSequence... suffix) {
  11. final StackTraceElement callingFrame = Thread.currentThread().getStackTrace()[2];
  12. final CharSequence methodName = callingFrame.getMethodName();
  13. final String className = sourceClass.getCanonicalName();
  14. String classFilename = className.replaceAll("\\.", "/").replaceAll("\\$", "/");
  15. @Nonnull File path = new File(Util.mkString(File.separator, reportingFolder, classFilename));
  16. for (int i = 0; i < suffix.length - 1; i++) path = new File(path, suffix[i].toString());
  17. String testName = suffix.length == 0 ? String.valueOf(methodName) : suffix[suffix.length - 1].toString();
  18. File parent = path;
  19. //parent = new File(path, new SimpleDateFormat("yyyy-MM-dd_HHmmss").format(new Date()));
  20. path = new File(parent, testName + ".md");
  21. path.getParentFile().mkdirs();
  22. logger.info(String.format("Output Location: %s", path.getAbsoluteFile()));
  23. return path;
  24. }

相关文章