org.javalite.common.Util.readResource()方法的使用及代码示例

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

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

Util.readResource介绍

[英]Reads contents of resource fully into a string. Sets UTF-8 encoding internally.
[中]将资源的内容完全读入字符串。在内部设置UTF-8编码。

代码示例

代码示例来源:origin: javalite/activejdbc

  1. /**
  2. * @param templatePath path to a template on classpath
  3. */
  4. public Templator(String templatePath){
  5. template = readResource(templatePath);
  6. }

代码示例来源:origin: javalite/activejdbc

  1. /**
  2. * Reads contents of resource fully into a string. Sets UTF-8 encoding internally.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as string.
  6. */
  7. public static String readResource(String resourceName) {
  8. return readResource(resourceName, "UTF-8");
  9. }

代码示例来源:origin: javalite/activejdbc

  1. /**
  2. * This method is used in one-off operations, where it is OK to load a template every time.
  3. *
  4. * Example:
  5. * <code>
  6. * String result = Templator.mergeFromPath(readResource("/message_template.txt", valuesMap));
  7. * </code>
  8. *
  9. * @param templatePath template to merge
  10. * @param values values to merge into a template
  11. * @return result of merging
  12. */
  13. public static String mergeFromPath(String templatePath, Map<String, ?> values) {
  14. return mergeFromTemplate(readResource(templatePath), values);
  15. }

代码示例来源:origin: com.github.tchoulihan/javalite-common

  1. /**
  2. * Reads contents of resource fully into a string. Sets UTF-8 encoding internally.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as string.
  6. */
  7. public static String readResource(String resourceName) {
  8. return readResource(resourceName, "UTF-8");
  9. }

代码示例来源:origin: org.javalite/javalite-common

  1. /**
  2. * @param templatePath path to a template on classpath
  3. */
  4. public Templator(String templatePath){
  5. template = readResource(templatePath);
  6. }

代码示例来源:origin: org.javalite/javalite-common

  1. /**
  2. * Reads contents of resource fully into a string. Sets UTF-8 encoding internally.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as string.
  6. */
  7. public static String readResource(String resourceName) {
  8. return readResource(resourceName, "UTF-8");
  9. }

代码示例来源:origin: org.javalite/javalite-common

  1. /**
  2. * This method is used in one-off operations, where it is OK to load a template every time.
  3. *
  4. * Example:
  5. * <code>
  6. * String result = Templator.mergeFromPath(readResource("/message_template.txt", valuesMap));
  7. * </code>
  8. *
  9. * @param templatePath template to merge
  10. * @param values values to merge into a template
  11. * @return result of merging
  12. */
  13. public static String mergeFromPath(String templatePath, Map<String, ?> values) {
  14. return mergeFromTemplate(readResource(templatePath), values);
  15. }

代码示例来源:origin: javalite/activeweb

  1. String filePath = Files.createTempDirectory("async").toFile().getCanonicalPath();
  2. Async async = new Async(filePath, true, new QueueConfig(QUEUE_NAME));
  3. String loremIpsum = Util.readResource("/lorem-ipsum.txt");
  4. async.start();

代码示例来源:origin: javalite/activeweb

  1. private static void testSendMethod() throws IOException {
  2. String QUEUE_NAME = "queue1";
  3. String filePath = Files.createTempDirectory("async").toFile().getCanonicalPath();
  4. Async async = new Async(filePath, false, new QueueConfig(QUEUE_NAME, new CommandListener(), LISTENER_THREAD_COUNT));
  5. String loremIpsum = Util.readResource("/lorem-ipsum.txt");
  6. async.start();
  7. HelloPerformanceCommand.START = System.currentTimeMillis();
  8. Runnable r = () -> {
  9. for(int i = 0; i < MESSAGES_PER_THREAD; i++){
  10. async.send(QUEUE_NAME, new HelloPerformanceCommand(loremIpsum + i));
  11. System.out.println("sent....");
  12. }
  13. };
  14. for(int i = 0; i < SENDING_THREAD_COUNT; i++){
  15. Thread t = new Thread(r);
  16. t.start();
  17. try {
  18. Thread.sleep(100);
  19. } catch (Exception e) {
  20. e.printStackTrace();
  21. }
  22. }
  23. }
  24. }

相关文章