jsch « File « Java Network Q&A

Home
Java Network Q&A
1.API
2.bluetooth
3.Client
4.connection
5.Cookie
6.Development
7.Email
8.File
9.ftp
10.http
11.HttpClient
12.https
13.ip
14.Network
15.OS
16.RMI
17.Security
18.Server
19.Socket
20.tcp
21.UDP
22.url
Java Network Q&A » File » jsch 

1. Finding file size and last modified of SFTP file using Java    stackoverflow.com

I'm using JSch to get files from an SFTP server, but I'm trying to figure out a way to only get the oldest file, and to make sure that it is ...

2. Transfer file from SFTP server to the local system using Java    stackoverflow.com

I am using the JSch library. I need three methods:

  • void delete() --- to delete the file with the given name
  • void copy() --- to copy the file with the given name ...

3. Transfer files from Unix to Winxp server using Jsch    stackoverflow.com

I'm writing a Java program, to transfer files from Unix server to Windows using the JSch library :) Maybe someone could help me find some example code on how to download ...

4. send multiple files from windows machine to a linux remote server "Jsch code"    stackoverflow.com

Could smoeone try to send multiple files to a remote server with Jsch, is this can be possible!! I am trying to send a multiple of scripts perl to check some existing ...

5. Read a file from the another location using JSch    stackoverflow.com

Here is my code to read a file from the another location using JSch

import com.jcraft.jsch.*;
import java.io.BufferedReader;
import java.io.*;
import java.util.Vector;

public class SftpClient {
    public static void main(String args[]) {
  ...

6. What are the key file formats of JSch and sharpSSH?    stackoverflow.com

I'm looking at setting up public key client and server authentication for SFTP using the JSch library (or actually the sharpSSH C# port of it). Unfortunately I cannot find ...

7. Moving files from server A to server B using JSch    coderanch.com

Hi JavaRanch, I am trying to copy/move files from server A to server B. Both the servers are in Linux and it is done successfully. In order to do this my moving script files should be either on Server A or Server B. But recently my requirement has been changed that my moving scripts should not be on both the servers ...

8. Jsch and Secure File Transfer Protocol [SFTP]    java-forums.org

HI, i used a small SFTP Client(java) to Connect to the SFTP Server and transfer a file. i can transfer the file successfully, but how do confirm that the file content are secure. Client : java SFTP Clinet using Jsch lib Server : FTPShell Server client program is import com.jcraft.jsch.*; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; public class SftpClient { public ...

10. Jsch and Secure File Transfer Protocol [SFTP]    forums.oracle.com

Hi, Thanks For Reply, i tried by setting session.setConfig("StrictHostKeyChecking", "yes"); i got error : reject HostKey: xxx.xx.xx.xxxx i tried by setting session.setConfig("StrictHostKeyChecking", "ask"); i got the error : UnknownHostKey: xxx.xx.xx.xxx. RSA key fingerprint is 97:f3:7e:01:51:ea:86:18:6b:be:18:d8:f7:8a:ee:58 how can i give the known_hosts file as input? what is hostkey ? where i will find that? Thanks in advance

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.