当前位置: 首页>>代码示例>>Java>>正文


Java InMemoryDestFile类代码示例

本文整理汇总了Java中net.schmizz.sshj.xfer.InMemoryDestFile的典型用法代码示例。如果您正苦于以下问题:Java InMemoryDestFile类的具体用法?Java InMemoryDestFile怎么用?Java InMemoryDestFile使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


InMemoryDestFile类属于net.schmizz.sshj.xfer包,在下文中一共展示了InMemoryDestFile类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: readTextFile

import net.schmizz.sshj.xfer.InMemoryDestFile; //导入依赖的package包/类
/**
 * Reads the contents of a file on the remote node, assuming UTF-8 encoding
 * @param targetPath the full path to the file on the host
 * @return the contents of the file
 */
public String readTextFile(String remotePath) throws IOException {
	ByteArrayOutputStream out = new ByteArrayOutputStream();

	InMemoryDestFile dest = new InMemoryDestFile() {
		@Override public OutputStream getOutputStream() throws IOException {
			return out;
		}
	};

	client.newSCPFileTransfer().download(remotePath, dest);

	return new String(out.toByteArray(), Charset.forName("UTF-8"));
}
 
开发者ID:bugminer,项目名称:bugminer,代码行数:19,代码来源:SshConnection.java

示例2: downloadAndSavePrivateKey

import net.schmizz.sshj.xfer.InMemoryDestFile; //导入依赖的package包/类
private void downloadAndSavePrivateKey(SSHClient ssh, InstanceMetaData gwInstance) throws IOException {
    ByteArrayOutputStream cert = new ByteArrayOutputStream();
    ssh.newSCPFileTransfer().download("/tmp/cluster.pem", new InMemoryDestFile() {

        @Override
        public OutputStream getOutputStream() {
            return cert;
        }
    });
    cert.close();
    InstanceMetaData metaData = instanceMetaDataRepository.findOne(gwInstance.getId());
    metaData.setServerCert(BaseEncoding.base64().encode(cert.toByteArray()));
    instanceMetaDataRepository.save(metaData);
}
 
开发者ID:hortonworks,项目名称:cloudbreak,代码行数:15,代码来源:TlsSetupService.java


注:本文中的net.schmizz.sshj.xfer.InMemoryDestFile类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。