Problem
When running an optional Ant task (e.g. scp
or
sshexec
) through the Eclipse Ant interface, you get an error
similar to the one below.
BUILD FAILED
C:\Path\To\build.xml:45: Problem: failed to create task or type scp
Cause: Could not load a dependent class com/jcraft/jsch/UserInfo
It is not enough to have Ant's optional JARs
you need the JAR files that the optional tasks depend upon.
Ant's optional task dependencies are listed in the manual.
Action: Determine what extra JAR files are needed, and place them in one of:
-C:\Path\To\Ant\Home\lib
-C:\Path\To\User\Home\.ant\lib
-a directory added on the command line with the -lib argument
Do not panic, this is a common problem.
The commonest cause is a missing JAR.
This is not a bug; it is a configuration problem
However, you have found all required dependencies for the tasks you are trying to use and put them in one of the folders as specified.
Cause
Although you have added the right dependencies, Eclipse might not yet know of
the file(s). If this is the case, you can see this by running Ant diagnostics
(ant -diagnostics
on the command line or the
<diagnostics>
ant task). You will see that the dependency is
listed in the appropriate “lib jar listing” but is missing in the
java.class.path
system property.
Solution
Go to Window > Preferences > Ant > Runtime >
Classpath
, select “Ant Home Entries (default)” and click “Add External
JARs…”. Select the required dependency or dependencies and accept. Now, the
selected JAR files will be loaded to the class path and the optional ant task
depending on them will work.
相关推荐
com.jcraft.jsch.MAC.class...com.jcraft.jsch.UserInfo.class com.jcraft.jsch.ServerSocketFactory.class com.jcraft.jsch.KeyPair.class com.jcraft.jsch.JSchPartialAuthException.class com.jcraft.jsch.DH.class ...
import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; JSch jsch = new JSch(); ``` #### 2. 设置用户认证信息 JSch提供了多种认证方式,这里以密码认证为例: ```java String host = "your_server_ip...
import com.jcraft.jsch.UserInfo; public class SftpServerExample { public static void main(String[] args) throws Exception { JSch jsch = new JSch(); Session session = jsch.getSession("serverUser", ...
import com.jcraft.jsch.JSch; import com.jcraft.jsch.JSchException; import com.jcraft.jsch.Session; public class Shell { private String ip; private String username; private String password; ...
import com.jcraft.jsch.*; public class SSHClient { public void connect(String host, String username, String password) throws JSchException { JSch jsch = new JSch(); Session session = jsch....
- `import com.jcraft.jsch.UserInfo;` - `import expect4j.Closure;` - `import expect4j.Expect4j;` - `import expect4j.ExpectState;` - `import expect4j.matches.EofMatch;` - `import expect4j.matches.Match;...
JSch库的核心类是`com.jcraft.jsch.Session`,这个类用于建立SSH连接。你需要设置用户名、主机地址、端口号以及密码或密钥对等信息来初始化Session对象。例如: ```java JSch jsch = new JSch(); Session session =...
要使用JSch库,你需要先从其官方网站(http://www.jcraft.com/jsch/)下载对应的jar包,并将其添加到项目的类路径中。接下来,你可以按照以下步骤实现文件上传和下载: 1. 创建一个`JSch`对象,初始化SSH连接。 ```...