本文整理了Java中ch.cyberduck.core.Protocol.getDefaultPath()
方法的一些代码示例,展示了Protocol.getDefaultPath()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Protocol.getDefaultPath()
方法的具体详情如下:
包路径:ch.cyberduck.core.Protocol
类名称:Protocol
方法名:getDefaultPath
暂无
代码示例来源:origin: iterate-ch/cyberduck
/**
* @param protocol Scheme
* @param hostname The hostname of the server
* @param port Port number
* @param credentials Login credentials
*/
public Host(final Protocol protocol, final String hostname, final int port, final Credentials credentials) {
this(protocol, hostname, port, protocol.getDefaultPath(), credentials);
}
代码示例来源:origin: iterate-ch/cyberduck
/**
* @param protocol The protocol to use, must be either Session.FTP or Session.SFTP
* @param hostname The hostname of the server
* @param port The port number to connect to
*/
public Host(final Protocol protocol, final String hostname, final int port) {
this(protocol, hostname, port, protocol.getDefaultPath());
}
代码示例来源:origin: iterate-ch/cyberduck
@Override
public String getDefaultPath() {
final String v = this.value("Default Path");
if(StringUtils.isBlank(v)) {
return parent.getDefaultPath();
}
return v;
}
代码示例来源:origin: iterate-ch/cyberduck
if(Objects.equals(bookmark.getDefaultPath(), bookmark.getProtocol().getDefaultPath()) ||
!selected.isPathConfigurable()) {
bookmark.setDefaultPath(selected.getDefaultPath());
内容来源于网络,如有侵权,请联系作者删除!