如何使用java从windows文件夹中将文件写入unix文件夹

时间:2014-10-30 13:29:09

标签: java windows unix copy filewriter

我需要使用Java

将文件从Windows文件夹复制到unix文件夹

我需要一个FTP实用程序。

该文件由Java程序处理,文件必须写入Unix文件夹

我有unix服务器名称和文件夹名称。

任何人都可以帮我怎么做?

2 个答案:

答案 0 :(得分:1)

你可以用JSch

来做
import com.jcraft.jsch.*;
import java.io.*;

public class ScpTo{
public static void main(String[] arg){
FileInputStream fis=null;
try{
    String lfile="file.txt";
    String user="username";
    String host="host";
    String rfile="file1.txt";

  JSch jsch=new JSch();
  Session session=jsch.getSession(user, host, 22);

  java.util.Properties config = new java.util.Properties(); 
  config.put("StrictHostKeyChecking", "no");
  session.setPassword("******");
  session.setConfig(config);
  session.connect();

  boolean ptimestamp = false;
  // exec 'scp -t rfile' remotely
  String command="scp " + (ptimestamp ? "-p" :"") +" -t "+rfile;
  Channel channel=session.openChannel("exec");
  ((ChannelExec)channel).setCommand(command);

  // get I/O streams for remote scp
  OutputStream out=channel.getOutputStream();
  InputStream in=channel.getInputStream();

  channel.connect();

  if(checkAck(in)!=0){
System.exit(0);
  }

  File _lfile = new File(lfile);

  if(ptimestamp){
    command="T "+(_lfile.lastModified()/1000)+" 0";
    // The access time should be sent here,
    // but it is not accessible with JavaAPI ;-<
    command+=(" "+(_lfile.lastModified()/1000)+" 0\n"); 
    out.write(command.getBytes()); out.flush();
    if(checkAck(in)!=0){
  System.exit(0);
    }
  }

  // send "C0644 filesize filename", where filename should not include '/'
  long filesize=_lfile.length();
  command="C0644 "+filesize+" ";
  if(lfile.lastIndexOf('/')>0){
    command+=lfile.substring(lfile.lastIndexOf('/')+1);
  }
  else{
    command+=lfile;
  }
  command+="\n";
  out.write(command.getBytes()); out.flush();
  if(checkAck(in)!=0){
System.exit(0);
  }

  // send a content of lfile
  fis=new FileInputStream(lfile);
  byte[] buf=new byte[1024];
  while(true){
    int len=fis.read(buf, 0, buf.length);
if(len<=0) break;
    out.write(buf, 0, len); //out.flush();
  }
  fis.close();
  fis=null;
  // send '\0'
  buf[0]=0; out.write(buf, 0, 1); out.flush();
  if(checkAck(in)!=0){
System.exit(0);
  }
  out.close();
  System.out.print("Transfer done.");

  channel.disconnect();
  session.disconnect();

  System.exit(0);
}
catch(Exception e){
  System.out.println(e);
  try{if(fis!=null)fis.close();}catch(Exception ee){}
}
}

static int checkAck(InputStream in) throws IOException{
int b=in.read();
// b may be 0 for success,
//          1 for error,
//          2 for fatal error,
//          -1
if(b==0) return b;
if(b==-1) return b;

if(b==1 || b==2){
  StringBuffer sb=new StringBuffer();
  int c;
  do {
c=in.read();
sb.append((char)c);
  }
  while(c!='\n');
  if(b==1){ // error
System.out.print(sb.toString());
  }
  if(b==2){ // fatal error
System.out.print(sb.toString());
  }
}
return b;
 }
}

答案 1 :(得分:0)

听起来你需要像Apache Commons Net提供的Java FTP客户端,它也提供example。还有一个完整的Java FTP file upload tutorial and example,可以满足您的需求。

相关问题