Java Path Create toPathIndex(String fileName)

Here you can find the source of toPathIndex(String fileName)

Description

to Path Index

License

Apache License

Declaration

public static int toPathIndex(String fileName) 

Method Source Code

//package com.java2s;
/**//from   w  w w  .  j a  va 2s. co  m
 * Copyright 2008 - 2009
 * 
 * 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.
 * 
 * @project loonframework
 * @author chenpeng
 * @email?ceponline@yahoo.com.cn
 * @version 0.1
 */

public class Main {

    public static int toPathIndex(String fileName) {
        int point = fileName.indexOf('/');
        if (point == -1) {
            point = fileName.indexOf('\\');
        }
        return point;
    }

    public static int toPathIndex(String fileName, int fromIndex) {
        int point = fileName.indexOf('/', fromIndex);
        if (point == -1) {
            point = fileName.indexOf('\\', fromIndex);
        }
        return point;
    }
}

Related

  1. toPath(String id)
  2. toPath(String pathName)
  3. toPath(String srcPath, boolean nodeModelSource)
  4. toPath(String... paths)
  5. toPath(String[] array)
  6. toPathName(String name)
  7. toPathPart(String fileName)
  8. toPathsFromArray(final String[] items)