Switch to full style
General Java code examples
Post a reply

Get filename full path,extension and filename

Wed Feb 06, 2013 9:02 pm

Filename class : Get filename full path,extension,and filename
java code
public class Filename {
private String fullPath;
private char pathSeparator, extensionSeparator;

public Filename(String str, char sep, char ext) {
fullPath = str;
pathSeparator = sep;
extensionSeparator = ext;
}

public String extension() {
int dot = fullPath.lastIndexOf(extensionSeparator);
return fullPath.substring(dot + 1);
}

public String filename() {
int dot = fullPath.lastIndexOf(extensionSeparator);
int sep = fullPath.lastIndexOf(pathSeparator);
return fullPath.substring(sep + 1, dot);
}

public String path() {
int sep = fullPath.lastIndexOf(pathSeparator);
return fullPath.substring(0, sep);
}
}




Post a reply
  Related Posts  to : Get filename full path,extension and filename
 using cache extension with php     -  
 get include path     -  
 get Folder path and size     -  
 Dijkstra ( Shortest Path )     -  
 draw General Path     -  
 Dijkstra ( Shortage Path )     -  
 return file path after encoded using UTF-8 from URL     -  
 shortest path algorithm java     -  
 full Screen Graphics     -  
 Full scrollable table     -  

Topic Tags

Java Files and I/O