import java.nio.channels.FileChannel;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;

public class JI9041749 {
	private final static String root = "/run/user/1000/gvfs/dav:host=127.0.0.1,ssl=false,prefix=%2Fwebdav"; 
	private final static Path test = Paths.get(root + "/test.txt"); 
	
	public static void main(String[] args) throws Exception {
		try (FileChannel channel = FileChannel.open(test, StandardOpenOption.WRITE)) { 

		} 

	}

}
