|
@@ -5,6 +5,10 @@ import java.net.URISyntaxException;
|
|
|
|
|
|
public class UrlUtil {
|
|
|
|
|
|
+ private static final String JPG = ".jpg";
|
|
|
+ private static final String PNG = ".png";
|
|
|
+ private static final String GIF = ".gif";
|
|
|
+
|
|
|
public static String getPath(String s) {
|
|
|
try {
|
|
|
URI uri = new URI(s);
|
|
@@ -18,4 +22,37 @@ public class UrlUtil {
|
|
|
return s;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ public static boolean isJpg(String url) {
|
|
|
+ return containsIgnoreCase(url, JPG);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static boolean isPng(String url) {
|
|
|
+ return containsIgnoreCase(url, PNG);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static boolean isGif(String url) {
|
|
|
+ return containsIgnoreCase(url, GIF);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static boolean containsIgnoreCase(String src, String what) {
|
|
|
+ final int length = what.length();
|
|
|
+ if (length == 0)
|
|
|
+ return true; // Empty string is contained
|
|
|
+
|
|
|
+ final char firstLo = Character.toLowerCase(what.charAt(0));
|
|
|
+ final char firstUp = Character.toUpperCase(what.charAt(0));
|
|
|
+
|
|
|
+ for (int i = src.length() - length; i >= 0; i--) {
|
|
|
+ // Quick check before calling the more expensive regionMatches() method:
|
|
|
+ final char ch = src.charAt(i);
|
|
|
+ if (ch != firstLo && ch != firstUp)
|
|
|
+ continue;
|
|
|
+
|
|
|
+ if (src.regionMatches(true, i, what, 0, length))
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|