在java中创建输出文件输出文件时出错

时间:2013-02-28 08:59:39

标签: java filenotfoundexception

您好我在尝试将文件FTP到目的地时收到以下错误。

我使用的代码:

 final String destinationFile = destinationFolder + inputFile.getName();

 OutputStream output = null;
    try {

        output = new FileOutputStream(destinationFile);

    } catch (Exception e) {
        System.out.println("Error creating output file");
        e.printStackTrace();
    }

例外:

java.io.FileNotFoundException: \bsgdata1\dba1\jubair\ftpPDF\TMPAAA6CaWnR.pdf (The system cannot find the path specified)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at com.finacle.pdf.reportgenerator.util.FtpUtil.ftp(FtpUtil.java:96)
    at com.finacle.pdf.reportgenerator.PdfReportGenerator.generate(PdfReportGenerator.java:86)
    at com.finacle.pdf.reportgenerator.PdfReportGenerator.main(PdfReportGenerator.java:35)
Exception in thread "main" java.lang.NullPointerException
    at com.finacle.pdf.reportgenerator.util.FtpUtil.ftp(FtpUtil.java:110)
    at com.finacle.pdf.reportgenerator.PdfReportGenerator.generate(PdfReportGenerator.java:86)
    at com.finacle.pdf.reportgenerator.PdfReportGenerator.main(PdfReportGenerator.java:35)

1 个答案:

答案 0 :(得分:0)

似乎文件目录无法访问/可加入。很可能是因为网络/ ftp不可用或路径不正确。如果您可以放置​​整个代码/项目,我可以帮助您调试相同的