サーバーからローカルシステムにフォルダーをコピーしようとしていますが、サーバーからファイルをコピーするコードをどのように記述したかわかりませんが、完全なフォルダーをコピーするのに混乱しています。ファイルをコピーするには、次のコードを使用しています。
BufferedInputStream in = null;
FileOutputStream fout = null;
try
{
in = new BufferedInputStream(new URL(urlString).openStream());
fout = new FileOutputStream(filename);
byte data[] = new byte[1024];
int count;
while ((count = in.read(data, 0, 1024)) != -1)
{
fout.write(data, 0, count);
}
}
finally
{
if (in != null)
in.close();
if (fout != null)
fout.close();
}
そしてその正常に動作しています。