Apache Commons FTPを使用してファイルをアップロードしています。アップロードする前に、ファイルがサーバーに既に存在するかどうかを確認し、そのファイルから同じサーバーのバックアップディレクトリにバックアップを作成します。
FTPサーバーから同じサーバー上のバックアップディレクトリにファイルをコピーする方法を知っている人はいますか?
public static void uploadWithCommonsFTP(File fileToBeUpload){
FTPClient f = new FTPClient();
FTPFile backupDirectory;
try {
f.connect(server.getServer());
f.login(server.getUsername(), server.getPassword());
FTPFile[] directories = f.listDirectories();
FTPFile[] files = f.listFiles();
for(FTPFile file:directories){
if (!file.getName().equalsIgnoreCase("backup")) {
backupDirectory=file;
} else {
f.makeDirectory("backup");
}
}
for(FTPFile file: files){
if(file.getName().equals(fileToBeUpload.getName())){
//copy file to backupDirectory
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
編集されたコード:それでも問題があります。Zipファイルをバックアップすると、バックアップされたファイルが破損します。
その理由を知っている人はいますか?
public static void backupUploadWithCommonsFTP(File fileToBeUpload) {
FTPClient f = new FTPClient();
boolean backupDirectoryExist = false;
boolean fileToBeUploadExist = false;
FTPFile backupDirectory = null;
try {
f.connect(server.getServer());
f.login(server.getUsername(), server.getPassword());
FTPFile[] directories = f.listDirectories();
// Check for existence of backup directory
for (FTPFile file : directories) {
String filename = file.getName();
if (file.isDirectory() && filename.equalsIgnoreCase("backup")) {
backupDirectory = file;
backupDirectoryExist = true;
break;
}
}
if (!backupDirectoryExist) {
f.makeDirectory("backup");
}
// Check if file already exist on the server
f.changeWorkingDirectory("files");
FTPFile[] files = f.listFiles();
f.changeWorkingDirectory("backup");
String filePathToBeBackup="/home/user/backup/";
String prefix;
String suffix;
String fileNameToBeBackup;
FTPFile fileReadyForBackup = null;
f.setFileType(FTP.BINARY_FILE_TYPE);
f.setFileTransferMode(FTP.BINARY_FILE_TYPE);
for (FTPFile file : files) {
if (file.isFile() && file.getName().equals(fileToBeUpload.getName())) {
prefix = FilenameUtils.getBaseName(file.getName());
suffix = ".".concat(FilenameUtils.getExtension(file.getName()));
fileNameToBeBackup = prefix.concat(Calendar.getInstance().getTime().toString().concat(suffix));
filePathToBeBackup = filePathToBeBackup.concat(fileNameToBeBackup);
fileReadyForBackup = file;
fileToBeUploadExist = true;
break;
}
}
// If file already exist on the server create a backup from it otherwise just upload the file.
if(fileToBeUploadExist){
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
f.retrieveFile(fileReadyForBackup.getName(), outputStream);
InputStream is = new ByteArrayInputStream(outputStream.toByteArray());
if(f.storeUniqueFile(filePathToBeBackup, is)){
JOptionPane.showMessageDialog(null, "Backup succeeded.");
f.changeWorkingDirectory("files");
boolean reply = f.storeFile(fileToBeUpload.getName(), new FileInputStream(fileToBeUpload));
if(reply){
JOptionPane.showMessageDialog(null,"Upload succeeded.");
}else{
JOptionPane.showMessageDialog(null,"Upload failed after backup.");
}
}else{
JOptionPane.showMessageDialog(null,"Backup failed.");
}
}else{
f.changeWorkingDirectory("files");
f.setFileType(FTP.BINARY_FILE_TYPE);
f.enterLocalPassiveMode();
InputStream inputStream = new FileInputStream(fileToBeUpload);
ByteArrayInputStream in = new ByteArrayInputStream(FileUtils.readFileToByteArray(fileToBeUpload));
boolean reply = f.storeFile(fileToBeUpload.getName(), in);
System.out.println("Reply code for storing file to server: " + reply);
if(!f.completePendingCommand()) {
f.logout();
f.disconnect();
System.err.println("File transfer failed.");
System.exit(1);
}
if(reply){
JOptionPane.showMessageDialog(null,"File uploaded successfully without making backup." +
"\nReason: There wasn't any previous version of this file.");
}else{
JOptionPane.showMessageDialog(null,"Upload failed.");
}
}
//Logout and disconnect from server
in.close();
f.logout();
f.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
}
Apache commons net FTPClient
を使用している場合、ファイルをある場所から別の場所に移動する直接的な方法があります(user
に適切な権限がある場合)。
ftpClient.rename(from, to);
または、ftp commands
に精通している場合は、次のようなものを使用できます。
ftpClient.sendCommand(FTPCommand.yourCommand, args);
if(FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) {
//command successful;
} else {
//check for reply code, and take appropriate action.
}
他のクライアントを使用している場合は、ドキュメントを参照してください。クライアントの実装間で大きな変更はありません。
更新:
上記のアプローチは、ファイルをto
ディレクトリに移動します。つまり、ファイルはfrom
ディレクトリに存在しなくなります。基本的にftpプロトコルは、local <-> remote
またはremote <-> other remote
からファイルを転送することを意図していますが、サーバーでは転送しません。
ここでの作業はより簡単で、完全なファイルをローカルInputStream
に取得し、それをバックアップディレクトリの新しいファイルとしてサーバーに書き戻します。
完全なファイルを取得するには、
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
ftpClient.retrieveFile(fileName, outputStream);
InputStream is = new ByteArrayInputStream(outputStream.toByteArray());
このストリームをバックアップディレクトリに保存します。最初に、作業ディレクトリをバックアップディレクトリに変更する必要があります。
// assuming backup directory is with in current working directory
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);//binary files
ftpClient.changeWorkingDirectory("backup");
//this overwrites the existing file
ftpClient.storeFile(fileName, is);
//if you don't want to overwrite it use storeUniqueFile
これがお役に立てば幸いです。
この方法を試してください、
Apacheのライブラリを使用しています。
ftpClient.rename(from、to)を使用すると簡単になります。以下のコードで、ftpClient.rename(from、to)を追加する場所について説明しました。
public void goforIt(){
FTPClient con = null;
try
{
con = new FTPClient();
con.connect("www.ujudgeit.net");
if (con.login("ujud3", "Stevejobs27!!!!"))
{
con.enterLocalPassiveMode(); // important!
con.setFileType(FTP.BINARY_FILE_TYPE);
String data = "/sdcard/prerakm4a.m4a";
ByteArrayInputStream(data.getBytes());
FileInputStream in = new FileInputStream(new File(data));
boolean result = con.storeFile("/Ads/prerakm4a.m4a", in);
in.close();
if (result)
{
Log.v("upload result", "succeeded");
// $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ここにバックアップを追加$$$$$$$$$$$$$$$ $$$$$$$$$$$$$$$$$ //
// Now here you can store the file into a backup location
// Use ftpClient.rename(from, to) to place it in backup
// $$$$$$$$$$$$$$$$$$$$$$$$$$$$$ここにバックアップを追加$$$$$$$$$$$$$$$ $$$$$$$$$$$$$$$$$ //
}
con.logout();
con.disconnect();
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
FTPプロトコルを介してリモートファイルを複製する標準的な方法はありません。一部のFTPサーバーは、このために独自のまたは非標準の拡張機能をサポートしています。
したがって、サーバーが mod_copy module を使用したProFTPDであることが幸運である場合、 FTP.sendCommand
次の2つのコマンドを発行します。
f.sendCommand("CPFR sourcepath");
f.sendCommand("CPTO targetpath");
2番目の可能性は、サーバーで任意のシェルコマンドを実行できることです。これはさらに一般的ではありません。サーバーがこれをサポートしている場合は、SITE EXEC
コマンド:
SITE EXEC cp -p sourcepath targetpath
別の回避策は、FTPサーバーへの2番目の接続を開き、パッシブモードのデータ接続をアクティブモードのデータ接続にパイプすることによって、サーバーにファイルをアップロードすることです。このソリューションの実装(PHPでも)は FTPがファイルを同じFTPの別の場所にコピーする に示されています。
どちらもうまくいかない場合は、ファイルをローカルの一時的な場所にダウンロードして、ターゲットの場所に再度アップロードするだけです。 @ RP-による回答 です。
FTPが同じFTPの別の場所にファイルをコピーする も参照してください。