vote up 0 vote down star

Is anyone aware of a decent CSV export tool for exporting from a ListView? I'm in a mad rush to get a project update out and feature creep means I don't have time to get this final urgent feature implemented myself.

flag

Sorry, just to add; alternatively a quick example of how to ensure that the CSV is not broken by commas and quotes would be great. – GenericTypeTea Jun 17 at 17:46
Please specify framework. Is this WinForms? – Stu Jun 17 at 18:01
It's C# .Net2.0 using WinForms. – GenericTypeTea Jun 17 at 18:09
1  
No offense, but this seems trivial and sounds more like doing your homework. – Mark Jun 17 at 19:38
StackOverflow I always thought was about helping fellow programmers. I had a deployment to do yesterday and hadn't accounted for that small feature. Urgent was emphasised to be sarcastic, i.e. you're right, it is trivial and it's blatantly not that urgent, but the client pays the bills... I had a load of other stuff to implement and was just looking for some quick help to speed up the export functionality development. – GenericTypeTea Jun 18 at 7:39

2 Answers

vote up 6 vote down check

That's not a big feature I'd say, unless you have some very odd requirements... but in this case, probably, no external tool can help you anyway.

Here is how I would approach the problem:

class ListViewToCSV
{
    public static void ListViewToCSV(ListView listView, string filePath, bool includeHidden)
    {
        //make header srting
        StringBuilder result = new StringBuilder();
        WriteCSVRow(result, listView.Columns.Count, i => includeHidden || listView.Columns[i].Width > 0, i => listView.Columns[i].Text);

        //export data rows
        foreach (var listItem in listView.Items)
            WriteCSVRow(result, listView.Columns.Count, i => includeHidden || listView.Columns[i].Width > 0, i => listItem.SubItems[i].Text);

        File.WriteAllText(filePath, result.ToString());
    }

    private void WriteCSVRow(StringBuilder result, int itemsCount, Func<int, bool> isColumnNeeded, Func<int, string> columnValue)
    {
        bool isFirstTime = true;
        for (int i = 0; i < itemsCount; i++)
        {
            if (!isColumnNeeded(i))
                continue;

            if (!isFirstTime)
                result.Append(",");
            isFirstTime = false;

            result.Append(String.Format("\"{0}\"", columnValue(i)));
        }
        result.AppendLine();
    }
}
link|flag
Showoff........ – Robert Harvey Jun 17 at 19:17
C'mon, maaan, upvote! :))) – Yacoder Jun 17 at 19:21
That wasn't the deal. :) Does it work? – Robert Harvey Jun 17 at 19:24
Sure. Why not?? – Yacoder Jun 17 at 19:28
1  
Nice answer. One issue I've just found is that if the first column of your listview is an uppercase "ID", then excel refuses to open the CSV file without generating an error, as it stupidly thinks the file is an SYLK file. The best workaround I've found to prevent this happening is to simply convert the headers to lowercase. MS state you can put an apostrophe as the first character on the first line to fix this, but then you get an ugly apostrophe show up in excel. More info: support.microsoft.com/kb/215591 – Bryan Aug 29 at 10:19
show 1 more comment
vote up 1 vote down

FileHelpers is a nice library that might just be your best friend today

link|flag

Your Answer

Get an OpenID
or

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