`
Sev7en_jun
  • 浏览: 1233397 次
  • 性别: Icon_minigender_1
  • 来自: 广州
博客专栏
84184fc0-d0b6-3f7f-a3f0-4202acb3caf5
Apache CXF使用s...
浏览量:111927
社区版块
存档分类
最新评论

com/jcraft/jsch/UserInfo

阅读更多

Solution: “Could not load a dependent class” when using Ant through Eclipse

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.

分享到:
评论
1 楼 dc075ya 2012-06-12  
Solution 

相关推荐

    com.jcraft.jsch_0.1.31

    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 ...

    jsch实现远程传输

    import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; JSch jsch = new JSch(); ``` #### 2. 设置用户认证信息 JSch提供了多种认证方式,这里以密码认证为例: ```java String host = "your_server_ip...

    java 代码开发SFTP Drmo

    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", ...

    java通过ssh连接服务器执行shell命令详解及实例

    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; ...

    java通过代码登录远程linux服务器并执行linux命令源码以及jar包

    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....

    java ssh 安全访问代码

    - `import com.jcraft.jsch.UserInfo;` - `import expect4j.Closure;` - `import expect4j.Expect4j;` - `import expect4j.ExpectState;` - `import expect4j.matches.EofMatch;` - `import expect4j.matches.Match;...

    java实现的简易xshell终端

    JSch库的核心类是`com.jcraft.jsch.Session`,这个类用于建立SSH连接。你需要设置用户名、主机地址、端口号以及密码或密钥对等信息来初始化Session对象。例如: ```java JSch jsch = new JSch(); Session session =...

    利用ssh实现服务器文件上传下载

    要使用JSch库,你需要先从其官方网站(http://www.jcraft.com/jsch/)下载对应的jar包,并将其添加到项目的类路径中。接下来,你可以按照以下步骤实现文件上传和下载: 1. 创建一个`JSch`对象,初始化SSH连接。 ```...

Global site tag (gtag.js) - Google Analytics