org.javalite.common.Util类的使用及代码示例

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

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

Util介绍

暂无

代码示例

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

  1. /**
  2. * @param source instance of String
  3. * @return null if source is empty or contains only whitespaces, source otherwise
  4. */
  5. @Override
  6. public Object convert(String source) {
  7. return blank(source) ? null : source;
  8. }
  9. }

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

  1. private String getAllColumns(String[] columns){
  2. return columns == null ? " *" : " " + join(columns, ", ");
  3. }

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

  1. /**
  2. * Reads contents of the input stream fully and returns it as String. Sets UTF-8 encoding internally.
  3. *
  4. * @param in InputStream to read from.
  5. * @return contents of the input stream fully as String.
  6. * @throws IOException in case of IO error
  7. */
  8. public static String read(InputStream in) throws IOException {
  9. return read(in, "UTF-8");
  10. }

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

  1. /**
  2. * Reads file into a byte array.
  3. *
  4. * @param file file to read.
  5. * @return content of file.
  6. * @throws java.io.IOException
  7. */
  8. public static byte[] read(File file) throws IOException {
  9. FileInputStream is = new FileInputStream(file);
  10. try {
  11. return bytes(is);
  12. } finally {
  13. closeQuietly(is);
  14. }
  15. }

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

  1. /**
  2. * Saves content of byte array to file.
  3. *
  4. * @param path path to file - can be absolute or relative to current.
  5. * @param content bytes to save.
  6. */
  7. public static void saveTo(String path, byte[] content) {
  8. InputStream is = null;
  9. try {
  10. is = new ByteArrayInputStream(content);
  11. saveTo(path, is);
  12. } finally {
  13. closeQuietly(is);
  14. }
  15. }

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

  1. /**
  2. * Joins the items in array with a delimiter.
  3. *
  4. * @param array array of items to join.
  5. * @param delimiter delimiter to insert between elements of array.
  6. * @return string with array elements separated by delimiter. There is no trailing delimiter in the string.
  7. */
  8. public static String join(String[] array, String delimiter) {
  9. if (empty(array)) { return ""; }
  10. StringBuilder sb = new StringBuilder();
  11. join(sb, array, delimiter);
  12. return sb.toString();
  13. }

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

  1. /**
  2. * Splits a string into an array using provided delimiter. Empty (but not blank) split chunks are omitted.
  3. * The split chunks are trimmed.
  4. *
  5. * @param input string to split.
  6. * @param delimiter delimiter
  7. * @return a string split into an array using a provided delimiter
  8. */
  9. public static String[] split(String input, char delimiter) {
  10. return split(input, String.valueOf(delimiter));
  11. }

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

  1. private static String exec(String command) {
  2. Runtime runtime = Runtime.getRuntime();
  3. try {
  4. Process p = runtime.exec(command);
  5. String output = read(p.getInputStream());
  6. String error = read(p.getErrorStream());
  7. if (!blank(error)) {
  8. throw new ExecException(error);
  9. }
  10. return output;
  11. } catch (ExecException e) {
  12. throw e;
  13. } catch (Exception e) {
  14. throw new ExecException(e);
  15. }
  16. }
  17. }

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

  1. /**
  2. * Reads contents of file fully and returns as string.
  3. *
  4. * @param fileName file name.
  5. * @param charset name of supported charset.
  6. * @return contents of entire file.
  7. */
  8. public static String readFile(String fileName, String charset) {
  9. FileInputStream in = null;
  10. try {
  11. in = new FileInputStream(fileName);
  12. return read(in, charset);
  13. } catch (IOException e) {
  14. throw new RuntimeException(e);
  15. } finally {
  16. closeQuietly(in);
  17. }
  18. }

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

  1. private static synchronized Map<String, Set<String>> getModelMap() {
  2. if (modelMap == null) {
  3. try {
  4. modelMap = new HashMap<>();
  5. Enumeration<URL> urls = Registry.instance().getClass().getClassLoader().getResources("activejdbc_models.properties");
  6. while(urls.hasMoreElements()) {
  7. URL url = urls.nextElement();
  8. LogFilter.log(LOGGER, LogLevel.INFO, "Loading models from: {}", url.toExternalForm());
  9. String modelsFile = Util.read(url.openStream());
  10. String[] lines = Util.split(modelsFile, System.getProperty("line.separator"));
  11. for(String line : lines) {
  12. String[] parts = Util.split(line, ':');
  13. String modelName = parts[0];
  14. String dbName = parts[1];
  15. Set<String> modelNames = modelMap.computeIfAbsent(dbName, k -> new HashSet<>());
  16. if (!modelNames.add(modelName)) {
  17. throw new InitException(String.format("Model '{}' already exists for database '{}'", modelName, dbName));
  18. }
  19. }
  20. }
  21. } catch(IOException e) {
  22. throw new InitException(e);
  23. }
  24. }
  25. return modelMap;
  26. }

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

  1. /**
  2. * Quietly closes the <code>java.sql.PreparedStatement</code> used in a batch execution. The advantage over calling
  3. * <code>java.sql.PreparedStatement.close()</code> directly is not having to explicitly handle a checked exception
  4. * (<code>java.sql.SQLException</code>).
  5. * This method should typically be called in a finally block. So as not to displace any exception (e.g. from a failed
  6. * batch execution) that might already be in flight, this method swallows any exception that might arise from
  7. * closing the statement. This is generally seen as a worthwhile trade-off, as it much less likely for a close to fail
  8. * without a prior failure.
  9. *
  10. * @param ps <code>java.sql.PreparedStatement</code> with which a batch has been executed. If null, this is a no-op.
  11. */
  12. public void closePreparedStatement(PreparedStatement ps) {
  13. closeQuietly(ps);
  14. }

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

  1. /**
  2. * Joins the items in array with a delimiter, and appends the result to StringBuilder.
  3. *
  4. * @param sb StringBuilder to append result to
  5. * @param array array of items to join.
  6. * @param delimiter delimiter to insert between elements of array.
  7. */
  8. public static void join(StringBuilder sb, Object[] array, String delimiter) {
  9. if (empty(array)) { return; }
  10. sb.append(array[0]);
  11. for (int i = 1; i < array.length; i++) {
  12. sb.append(delimiter);
  13. sb.append(array[i]);
  14. }
  15. }

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

  1. private String loadTemplate(String templateName){
  2. String slash = templateName.startsWith("/") ? "" : "/";
  3. //for tests, load from location
  4. if (templateLocation != null) {
  5. return readFile(templateLocation + slash + templateName, "UTF-8");
  6. }
  7. //proceed to load from servlet context
  8. String fullPath = "/WEB-INF/views" + slash + templateName;
  9. // First try to open as plain file (to bypass servlet container resource caches).
  10. String realPath = servletContext.getRealPath(fullPath);
  11. try {
  12. if (realPath != null) {
  13. File file = new File(realPath);
  14. if (!file.isFile()) {
  15. throw new TemplateException(realPath + " is not a file");
  16. }
  17. if (file.canRead()) {
  18. return readFile(realPath, "UTF-8");
  19. }
  20. }
  21. } catch (SecurityException ignore) {}
  22. try {
  23. URL url = servletContext.getResource(fullPath);
  24. return Util.read(url.openStream(), "UTF-8");
  25. } catch (Exception e) {throw new TemplateException(e);}
  26. }

代码示例来源: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/activeweb

  1. /**
  2. * Constructor to be used in tests, field name and file name are set to File name.
  3. * Content type set to "text/plain".
  4. *
  5. * @param file file to send.
  6. * @throws IOException
  7. */
  8. public FileItem(File file) throws IOException {
  9. super(file.getName(), file.getName(), true, "text/plain", Util.bytes(new FileInputStream(file)));
  10. }

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

  1. /**
  2. * Reads contents of file fully and returns as string.
  3. *
  4. * @param fileName file name.
  5. * @return contents of entire file.
  6. */
  7. public static String readFile(String fileName) {
  8. return readFile(fileName, "UTF-8");
  9. }

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

  1. /**
  2. * Saves content of this item to a file.
  3. *
  4. * @param path to file
  5. * @throws IOException
  6. */
  7. public void saveTo(String path) throws IOException {
  8. Util.saveTo(path, getInputStream());
  9. }
  10. }

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

  1. /**
  2. * Reads contents of resource fully into a byte array.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as byte array.
  6. */
  7. public static byte[] readResourceBytes(String resourceName) {
  8. InputStream is = Util.class.getResourceAsStream(resourceName);
  9. try {
  10. return bytes(is);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. } finally {
  14. closeQuietly(is);
  15. }
  16. }

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

  1. /**
  2. * Joins the items in array with a delimiter.
  3. *
  4. * @param array array of items to join.
  5. * @param delimiter delimiter to insert between elements of array.
  6. * @return string with array elements separated by delimiter. There is no trailing delimiter in the string.
  7. */
  8. public static String join(String[] array, String delimiter) {
  9. if (empty(array)) { return ""; }
  10. StringBuilder sb = new StringBuilder();
  11. join(sb, array, delimiter);
  12. return sb.toString();
  13. }

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

  1. /**
  2. * Convenience method, does the same as {@link #execute(String...)}, but will
  3. * automatically convert a full command string to tokens for convenience.
  4. * Here is how to call:
  5. *
  6. * <pre>
  7. * System.out.println(execute("ls -ls").out);
  8. * </pre>
  9. *
  10. * @param command - a single string representing a command and its arguments.
  11. * @return instance of {@link Response} with result of execution.
  12. */
  13. public static Response execute(String command) {
  14. return execute(Util.split(command, " "));
  15. }

相关文章