问题 we disabled smbv1 in our windows machine and now we can't connect using smb2 we are using commons-vfs2(2.0) and commons-vfs2-sandbox(2.0) here is my code: @Test public void testConnection() throws FileSystemException { String folder = "\\\\10.0.0.0\\smb"; folder = folder.replaceAll("\\\\", "/"); StringBuilder builder = new StringBuilder(128).append(Protocol.CIFS.getProtocolPrefix()).append(':') .append(folder); String fileURI = builder.toString(); System.out.println(fileURI);