Exporting SQLite Database to csv file in android

前端 未结 3 661
半阙折子戏
半阙折子戏 2020-11-29 03:54

I am trying to export SQLite data to SD card in android as a CSV file on a directory.

So i have tried this method below and apparently it only shows this text printe

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 04:04

    First of all remove this line to have a valid csv formatted document.

    printWriter.println("FIRST TABLE OF THE DATABASE");
    

    Second, make sure you have data in your table and check if your query actually returns anything by debugging.

提交回复
热议问题