Just an update, I have since decided to go to SQLite. My familiarity with is is horrible, but it does an incredible job. Never quite got the CSV working off the ground before I realized it would just be easier to go SQLite. Thanks so much for the guidance guys and hopefully that information can help the next person coming along with CSV questions.
Respectfully, Ben On Dec 17 2009, 9:35 am, Ben <[email protected]> wrote: > Mark, Matt, thanks a ton for the help. Just needed some direction and > I think I've got it. If I get this working as I'm hoping will post the > source here to benefit others. Thanks again. > > On Dec 15, 10:34 am, Matt Kanninen <[email protected]> wrote: > > > > > Doesn't sound like an Android question to me, just look for JavaCSV > > samples. > > > If you need some Android examples for file IO those are plentiful. > > Here for example is how to write to your apps private directory: > > > FileOutputStream fos = > > context.openFileOutput(fileName, > > Context.MODE_PRIVATE); > > fos.write(bytes); > > fos.flush(); > > fos.close(); > > > you may prefer to write the sdCard, but then you will have to handle > > your own security. Or you may not care. > > > On Dec 14, 11:56 pm, Ben <[email protected]> wrote: > > > > I'll open with, I googled this thing like crazy, searched anddev and a > > > few other boards (including this one) and can't quite find what I'm > > > looking for. > > > > The predicament : allCSVexamples are in reference to contacts, and > > > the file read/write posts (the ones that I need) make the assumption > > > that I am not a beginner and most don't even post any code leaving me > > > nothing to learn on. > > > > The hopeful solution : a link to a solid example of simply how to > > > write to aCSVwith my own custom fields and values, and how to read a > > >CSVand load said values. > > > > I don't imagine anyone is going to take the time to write the code > > > solely to post it here, so if you can just point me in the right > > > direction it would be greatly appreciated.
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

