Split code.
This commit is contained in:
parent
8cca172abd
commit
c0b41a43ea
1 changed files with 40 additions and 14 deletions
|
@ -24,6 +24,45 @@ import java.net.URL;
|
|||
*/
|
||||
public class FileTools
|
||||
{
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @param fileName
|
||||
* Source.
|
||||
*
|
||||
* @return Extension value or null.
|
||||
*/
|
||||
public static String addBeforeExtension(final String fileName, final String addition)
|
||||
{
|
||||
String result;
|
||||
|
||||
if (fileName == null)
|
||||
{
|
||||
result = null;
|
||||
}
|
||||
else if (addition == null)
|
||||
{
|
||||
result = fileName;
|
||||
}
|
||||
else
|
||||
{
|
||||
//
|
||||
int separatorIndex = fileName.lastIndexOf('.');
|
||||
|
||||
//
|
||||
if (separatorIndex > 0)
|
||||
{
|
||||
result = fileName.substring(0, separatorIndex) + addition + fileName.substring(separatorIndex);
|
||||
}
|
||||
else
|
||||
{
|
||||
result = fileName + addition;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -49,20 +88,7 @@ public class FileTools
|
|||
{
|
||||
//
|
||||
String sourceFileName = file.getAbsolutePath();
|
||||
int separatorIndex = sourceFileName.lastIndexOf('.');
|
||||
|
||||
//
|
||||
String targetFileName;
|
||||
if (separatorIndex > 0)
|
||||
{
|
||||
targetFileName = sourceFileName.substring(0, separatorIndex) + addition + sourceFileName.substring(separatorIndex);
|
||||
}
|
||||
else
|
||||
{
|
||||
targetFileName = sourceFileName + addition;
|
||||
}
|
||||
|
||||
//
|
||||
String targetFileName = addBeforeExtension(sourceFileName, addition);
|
||||
result = new File(targetFileName);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue