Java 找不到类com.cisco.sdp.vsn.node.channel.tcp.handler.sftp.TestSftpServerHandlerIntegration

Java 找不到类com.cisco.sdp.vsn.node.channel.tcp.handler.sftp.TestSftpServerHandlerIntegration,java,classpath,classnotfoundexception,Java,Classpath,Classnotfoundexception,当我运行这个类时,它会这样说:我们如何解决这个问题?类是否没有找到一个非常清晰的错误消息?包含测试类的包是什么?包com.cisco.sdp.vsn.node.channel.tcp.handler.sftp;和类名TestSftpServerHandlerIntegration.java sir,但类存在于我的项目中为什么会出现此错误并编译该类,如果它是maven项目,只需更新它。我已经重新编译了,但仍然存在 Class not found com.cisco.sdp.vsn.node.cha

当我运行这个类时,它会这样说:我们如何解决这个问题?

类是否没有找到一个非常清晰的错误消息?包含测试类的包是什么?包com.cisco.sdp.vsn.node.channel.tcp.handler.sftp;和类名TestSftpServerHandlerIntegration.java sir,但类存在于我的项目中为什么会出现此错误并编译该类,如果它是maven项目,只需更新它。我已经重新编译了,但仍然存在
Class not found com.cisco.sdp.vsn.node.channel.tcp.handler.sftp.TestSftpServerHandlerIntegration
    java.lang.ClassNotFoundException: com.cisco.sdp.vsn.node.channel.tcp.handler.sftp.TestSftpServerHandlerIntegration
        at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
        at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
        at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
        at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.loadClass(RemoteTestRunner.java:685)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.loadClasses(RemoteTestRunner.java:421)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:444)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
        at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
import com.cisco.sdp.junitrunner.SDPJunitMethodOrderTestRunner;
import org.junit.runner.RunWith;

/**
 * @author anghatak
 * 
 */
@RunWith(SDPJunitMethodOrderTestRunner.class)

public class TestSftpServerHandlerIntegration extends
    IntegrationTestingEnvironmentSetup {

    private static final Log LOG = LogFactory
    .getLog(TestSftpServerHandlerIntegration.class);

public static ApplicationContext applicationContext;

private static com.jcraft.jsch.Session session;
private static SshServer sshd;

/**
 * Initilize
 */
@BeforeClass
}