Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
File f = new File(fileExportPath); //   D:/temp
    if(!f.exists())
    {
        f.mkdir();

    }
    f.setWritable(true);
    f.setExecutable(true);
String filePath = fileExportPath + File.separator;

         try {
             String Content="";
             Content+="\"Title\",\"Description\",\"DueDate\",\"AssignedTo\"\n";

             byte buf[] = Content.getBytes(); 
             OutputStream fileOut = new FileOutputStream(filePath);
             fileOut.write(buf);
             fileOut.close();
            }

OutputStream fileOut = new FileOutputStream(filePath); im getting error in this line

share|improve this question
what's the error? – Steven Feb 21 '11 at 5:42
where can i give the filename, actuall i didnt specify the file name – kiran Feb 21 '11 at 5:47
ps. youre not even using poi in this code. i have also tried the code snippet and have no errors. perhaps there is a permissions problem – Steven Feb 21 '11 at 6:02

1 Answer

up vote 0 down vote accepted

The "filePath" is a directory name.

String filePath = fileExportPath + File.separator;

It is necessary to add the file name to "filePath".

String filePath = fileExportPath + File.separator + "fileName";
share|improve this answer
how can i said default cell width in excel sheet using poi library and HSSF – kiran Feb 21 '11 at 14:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.