我正在尝试用Java编写代码来检查远程服务器上是否存在目录。我已经尝试过在Check whether the path exists on server or not in Java上提到的内容。
ChannelSftp channelSftp = new ChannelSftp();
SftpATTRS attrs = null;
try {
String currentDirectory = channelSftp.pwd();
System.out.println(currentDirectory);
} catch (SftpException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
attrs = channelSftp.stat("/x/web/STAGE2MA49/qatools/capturescripts_new");
} catch (Exception e) {
// TODO Auto-generated catch block
System.out.println(" not found");
}
但是上面的代码确实可以解决。下面是错误堆栈
at com.jcraft.jsch.ChannelSftp.getHome(ChannelSftp.java:2443)
at com.jcraft.jsch.ChannelSftp.getCwd(ChannelSftp.java:2452)
at com.jcraft.jsch.ChannelSftp.pwd(ChannelSftp.java:2429)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:215)
at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:142)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:336)
at org.testng.SuiteRunner.run(SuiteRunner.java:268)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1244)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1169)
at org.testng.TestNG.run(TestNG.java:1064)
at org.testng.remote.RemoteTestNG.run(RemoteTestNG.java:113)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:206)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:177)
Caused by: java.lang.NullPointerException
at com.jcraft.jsch.ChannelSftp.getHome(ChannelSftp.java:2435)
... 21 more
答案 0 :(得分:1)
ChannelSftp channelSftp = new ChannelSftp();
您不能只是构造一个ChannelSftp
对象并期望它起作用。您将需要创建到远程服务器的SSH会话,然后请求一个SFTP通道来运行该会话。
question that you linked to引用了一个example program,它使用Jsch与远程服务器建立SFTP连接。我将在此处复制其中的一部分:
JSch jsch=new JSch();
...
Session session=jsch.getSession(user, host, port);
...
session.connect();
...
Channel channel=session.openChannel("sftp");
channel.connect();
ChannelSftp c=(ChannelSftp)channel;
使用JSCH API,您将创建一个Jsch
对象,然后使用该对象创建一个Session
,然后使用Session
对象连接到远程服务器。假定工作正常,您可以请求通过会话运行的“ sftp”通道。这将返回您需要的ChannelSftp
对象。