Java Path Normalize normalizeBasePath(String basePath)

Here you can find the source of normalizeBasePath(String basePath)

Description

normalize Base Path

License

Apache License

Declaration

private static String normalizeBasePath(String basePath) 

Method Source Code

//package com.java2s;
/*/*from w ww .  ja va  2  s.c  o m*/
   Copyright (c) 2012 LinkedIn Corp.
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

public class Main {
    private static String normalizeBasePath(String basePath) {
        String normalized = basePath;
        while (normalized.endsWith("/")) {
            normalized = normalized.substring(0, normalized.length() - 1);
        }
        return normalized;
    }
}

Related

  1. normalize(String path)
  2. normalize(String path, String separator)
  3. normalize(String pathname, int len, int off)
  4. normalize_color_path(int eff_color_path)
  5. normalizeAllSeparators(String path)
  6. normalizeDbPath(String databasePath)
  7. normalizeDotSegment(String path)
  8. normalizedPath(String original)
  9. normalizeFileSystemPath(String path)