Мне нужно скопировать файл из хранилища SVN.Это работает, когда я запускаю код в Windows (локально).но когда я развертываю сервер на виртуальной машине linux, содержимое файла не копируется.
SVNProperties properties = new SVNProperties();
FileOutputStream fileOutpuStream = new FileOutputStream(copyfile);
List<SvnEntry> tree = svn.list("");
for (int i = 0; i < tree.size(); i++)
{
SvnEntry entry = tree.get(i);
// searching for the file
if (entry.getAuthor().equals(name))
{
repository.getFile(filepath, entry.getRevision(), properties, fileOutpuStream);
// once the file is found, break the loop
break;
}
}