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

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

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

Util.split介绍

[英]Splits a string into an array using provided delimiter. Empty (but not blank) split chunks are omitted. The split chunks are trimmed.
[中]使用提供的分隔符将字符串拆分为数组。空的(但不是空的)分割块被省略。分割的块被修剪。

代码示例

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

代码示例来源: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. String[] commandAndArgs = command.length == 1 && command[0].contains(" ") ? Util.split(command[0], " ") : command;

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

  1. @Override
  2. public void setArguments(String argumentLine) {
  3. this.argumentLine = argumentLine.trim();
  4. String[] arguments = split(argumentLine, " ");
  5. singleArgument = arguments.length == 1;
  6. }

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

  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: com.github.tchoulihan/javalite-common

  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/activeweb

  1. private String getTemplatePath(String containerName, String templateArgumentName){
  2. String templatePath;
  3. if(!templateArgumentName.startsWith("/")){ //need to get path of container - this is not a shared partial, so expect it is located in teh same
  4. //directory with the containing template
  5. String path = containerName.substring(0, containerName.lastIndexOf("/"));
  6. templatePath = "/" + path + "/" + templateArgumentName;
  7. }else{//this is a shared partial
  8. if(Util.split(templateArgumentName, '/').length < 2){
  9. throw new IllegalArgumentException("wrong name of shared partial");
  10. }
  11. String path = templateArgumentName.substring(0, templateArgumentName.lastIndexOf("/"));
  12. templatePath = path + "/" + templateArgumentName.substring(templateArgumentName.lastIndexOf("/") + 1);
  13. }
  14. return templatePath;
  15. }

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

  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. }

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

  1. /**
  2. *
  3. * @param containerName - name of the container template.
  4. * @param templateArgumentName this is a name of a partial provided as an attribute to the "render" tag.
  5. * @return full path to a template file.
  6. */
  7. private String getTemplatePath(String containerName, String templateArgumentName){
  8. String templatePath;
  9. if(!templateArgumentName.startsWith("/")){ //need to get path of container - this is not a shared partial, so expect it is located in teh same
  10. //directory with the containing template
  11. String path = containerName.substring(0, containerName.lastIndexOf("/"));
  12. templatePath = "/" + path + "/_" + templateArgumentName;
  13. }else{//this is a shared partial
  14. if(Util.split(templateArgumentName, '/').length < 2){
  15. throw new IllegalArgumentException("wrong name of shared partial");
  16. }
  17. String path = templateArgumentName.substring(0, templateArgumentName.lastIndexOf("/"));
  18. templatePath = path + "/_" + templateArgumentName.substring(templateArgumentName.lastIndexOf("/") + 1);
  19. }
  20. return templatePath;
  21. }

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

  1. @Override
  2. public void setArguments(String argumentLine) {
  3. super.setArguments(argumentLine);
  4. String[] arguments = Util.split(argumentLine, ' ');
  5. if(arguments.length != 3 || !arguments[1].equals("as"))
  6. throw new ParseException("List arguments must have format: 'collection as localVar'");
  7. collectionName = arguments[0];
  8. varName = arguments[2];
  9. }

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

  1. @Override
  2. protected void render(Map params, String body, Writer writer) throws Exception {
  3. if (params.containsKey("key")) {
  4. String key = params.get("key").toString();
  5. if(params.containsKey("locale")){
  6. String localeString = params.get("locale").toString();
  7. String language, country;
  8. Locale locale;
  9. if(localeString.contains("_")){
  10. language = split(localeString, '_')[0];
  11. country = split(localeString, '_')[1];
  12. locale = new Locale(language, country);
  13. }else{
  14. language = localeString;
  15. locale = new Locale(language);
  16. }
  17. writer.write(Messages.message(key, locale, getParamsArray(params)));
  18. }else{
  19. writer.write(Messages.message(key, getParamsArray(params)));
  20. }
  21. }else{
  22. writer.write("<span style=\"display:none\">you failed to supply key for this message tag</span>");
  23. }
  24. }

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

  1. @Override
  2. public void setArguments(String argumentLine) {
  3. super.setArguments(argumentLine);
  4. this.expression = argumentLine.contains(".");
  5. boolean hasBuiltIn = argumentLine.contains(" ");
  6. if (argumentLine.length() - argumentLine.replace(" ", "").length() > 1)
  7. throw new ParseException("Merge token: " + argumentLine + " has more that one space");
  8. if (argumentLine.length() - argumentLine.replace(".", "").length() > 1)
  9. throw new ParseException("Merge token: " + argumentLine + " has more that one dots");
  10. if (hasBuiltIn) {
  11. String[] parts = Util.split(argumentLine, ' ');
  12. String builtInName = parts[1];
  13. builtIn = TemplatorConfig.instance().getBuiltIn(builtInName);
  14. if (expression) {
  15. parts = Util.split(parts[0], '.');
  16. this.objectName = parts[0];
  17. this.propertyName = parts[1];
  18. }
  19. } else if (expression) {
  20. String[] parts = Util.split(argumentLine, '.');
  21. this.objectName = parts[0];
  22. this.propertyName = parts[1];
  23. }
  24. }

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

  1. /**
  2. * Used for custom routes
  3. * @param routeConfig what was specified in the RouteConfig class
  4. */
  5. protected RouteBuilder(String routeConfig) {
  6. String[] segmentsArr = Util.split(routeConfig, '/');
  7. for (String segmentStr : segmentsArr) {
  8. Segment segment = new Segment(segmentStr);
  9. segments.add(segment);
  10. if (segment.wildCard) {
  11. String wildCardSegment = segment.segment;
  12. wildcardName = wildCardSegment.substring(1);
  13. break; // break from loop, we are done!
  14. }
  15. }
  16. if(segmentsArr.length > segments.size()){
  17. throw new ConfigurationException("Cannot have URI segments past wild card");
  18. }
  19. this.routeConfig = routeConfig;
  20. for (Segment segment : segments) {
  21. if (segment.mandatory) {
  22. mandatorySegmentCount++;
  23. }
  24. }
  25. }

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

  1. String[] requestUriSegments = Util.split(requestUri, '/');
  2. if(isWildcard() && requestUriSegments.length >= segments.size() && wildSegmentsMatch(requestUriSegments, controllerPath)){
  3. String[] tailArr = Arrays.copyOfRange(requestUriSegments, segments.size() - 1, requestUriSegments.length);

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

  1. while ((line = reader.readLine()) != null) {
  2. String[] parts = split(line, ':');
  3. String modelName = parts[0];
  4. String dbName = parts[1];

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

  1. String[] partialParts = Util.split(params.get("partial").toString(), '/');
  2. String partialName = partialParts[partialParts.length - 1];
  3. Template partialTemplate = env.getConfiguration().getTemplate(partialPath + ".ftl" );

相关文章