/**
* 把文件路径转换成与操作系统相关的路径方式
*
* @param path
* @return
*/
private String changeFilePath(String path)
{
String filePath = "";
if (path.indexOf("/") != -1)
{
filePath = path.replace("/", File.separator);
}
else
{
filePath = path.replace("\\", File.separator);
}
return filePath;
}