2010-08-14 4 views

Répondre

3
import java.io.File; 

// ... 

public static String pathCombine(String path1, String path2) 
{ 
    File parent = new File(path1); 
    File child = new File(parent, path2); 
    return child.getPath(); 
}