gcube-cms-suite/geoportal-common/src/main/java/org/gcube/application/geoportal/common/utils/Files.java

53 lines
1.4 KiB
Java
Raw Normal View History

2021-09-20 16:47:35 +02:00
package org.gcube.application.geoportal.common.utils;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.nio.charset.Charset;
import java.nio.file.Paths;
public class Files {
public static File getFileFromResources(String fileName) {
ClassLoader classLoader =Files.class.getClassLoader();
URL resource = classLoader.getResource(fileName);
if (resource == null) {
throw new IllegalArgumentException("file is not found!");
} else {
return new File(resource.getFile());
}
}
public static String readFileAsString(String path, Charset encoding)
throws IOException
{
byte[] encoded = java.nio.file.Files.readAllBytes(Paths.get(path));
return new String(encoded, encoding);
}
public static String getName(String path) {
return path.substring((path.contains(File.separator)?path.lastIndexOf(File.separator)+1:0)
,(path.contains(".")?path.lastIndexOf("."):path.length()));
}
public static String fixFilename(String toFix) {
2021-09-23 16:50:33 +02:00
String extension="";
2021-09-20 16:47:35 +02:00
if(toFix.contains(".")) {
2021-09-23 16:50:33 +02:00
//preserve extension
int index=toFix.indexOf(".");
extension=toFix.substring(index);
//only escape before extension
toFix=toFix.substring(0,toFix.indexOf("."));
2021-09-20 16:47:35 +02:00
}
2021-09-23 16:50:33 +02:00
return toFix.toLowerCase().
replaceAll("[\\*\\+\\/\\\\ \\[\\]\\(\\)\\.\\\"\\:\\;\\|]","_")+extension;
2021-09-20 16:47:35 +02:00
}
}