0

我想知道是否真的“放置”已成功将文件放置到目的地。如果由于任何原因文件没有放在目标位置[可能是由于目标服务器中的问题,如空间限制等],我需要知道这一点。

代码:

    private static boolean putFile(String m_sLocalFile, FtpClient m_client) {
            boolean success = false;
    int BUFFER_SIZE = 10240;
    if (m_sLocalFile.length() == 0) {
        System.out.println("Please enter file name");
    }
    byte[] buffer = new byte[BUFFER_SIZE];
    try {
        File f = new File(m_sLocalFile);
        int size = (int) f.length();
        System.out.println("File " + m_sLocalFile + ": " + size + " bytes");
        System.out.println(size);
        FileInputStream in = new FileInputStream(m_sLocalFile);
        OutputStream out = m_client.put(f.getName());

        int counter = 0;
        while (true) {
            int bytes = in.read(buffer);
            if (bytes < 0)
                break;
            out.write(buffer, 0, bytes);
            counter += bytes;
            System.out.println(counter);
        }

        out.close();
        in.close();
    } catch (Exception ex) {
        System.out.println("Error: " + ex.toString());
    }
          return success;
}
4

1 回答 1

0

我希望它会抛出一个IOException. 你有理由相信它不会吗?但是你不应该直接使用那个类,你应该使用一个 ftp:URL和它的URLConnection类来做 I/O,在调用setDoOutput(true).

于 2012-04-05T08:09:42.777 回答