Tag: CSV

  • Creating CSV file with different datasets

    Lately I’ve been into Java (as part of programming in Android apps) and I had to code a logic that takes different datasets (for example data about game, data about player stats, different headers) and writes them in single CSV file. This is not a task when you simply write 2D array of string to…

  • Exporting data as CSV file from web apps (with Golang)

    While you can certainly export data from javascript with two different ways, they both aren’t good solutions. First one doesn’t allow you to name the downloaded file (it’s just download), second is only supported in Chrome, Firefox and latest version of Microsoft Edge (by the time of writing this post). So the only acceptable option…