Where OpenCSV creates the .csv files?

2.4k Views Asked by At

I'm working with opencsv librarie in Eclipse and when I write something in a .csv I don't know in which folder is created. I should say that I need that the .csv file is not deleted when i turn off the app, so I can store in the assets folder, right?

My code is this:

try {
    String csv = "data.csv";
    CSVWriter writer = new CSVWriter(new FileWriter(csv));

    //Create record
    String [] record = "hello,world".split(",");
    //Write the record to file
    writer.writeNext(record);

    //close the writer
    writer.close();

} catch (IOException e) {}
1

There are 1 best solutions below

3
On

May be you can find it file at "/data/data/your_project_package_structure/files/data.csv"

Still don't find the You can do like this. file.getAbsolutePath() gives you full path there you can identify where your file getting stored:

try
{
File file = new File("data.csv");

  // creates the file of name data.csv     
  file.createNewFile();

  //you can print absolute path of file
  System.out.println(file.getAbsolutePath());

  // creates a FileWriter Object
  FileWriter writer = new FileWriter(file); 

  //pass to csv writer
  CSVWriter writer = new CSVWriter(new FileWriter(csv));

              //Create record
              String [] record = "hello,world".split(",");
              //Write the record to file
              writer.writeNext(record);

              //close the writer
              writer.close();

        } catch (IOException e) {
        }