Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 70e57a1c44dc8b8eeb2fd91efad0f8ec3d90b654 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*******************************************************************************
 * Copyright (c) 2015 Raymond Augé.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Raymond Augé <raymond.auge@liferay.com> - Bug 467859
 ******************************************************************************/

package org.eclipse.equinox.http.servlet.internal.util;

/**
 * @author Raymond Augé
 */
public class Path {

	public static String findExtension(String path) {
		path = stripQueryString(path);

		String lastSegment = path.substring(path.lastIndexOf('/') + 1);

		int dot = lastSegment.lastIndexOf('.');

		if (dot == -1) {
			return null;
		}

		return lastSegment.substring(dot + 1);
	}

	public static String findQueryString(String path) {
		String queryString = null;

		int index = path.indexOf('?');

		if (index != -1) {
			queryString = path.substring(index + 1);
		}

		return queryString;
	}

	public static String stripQueryString(String path) {
		int index = path.indexOf('?');

		if (index != -1) {
			path = path.substring(0, index);
		}

		return path;
	}

}

Back to the top