I am working on a simple data collection tool using PhoneGap and KnockoutJS, which allows a user to collect some data, store it, and then report on it on the phone.
However the reports are nice on the phone but in reality they will want to print off these reports and export the data for use in Excel or some other program.
So is there a way to bluetooth/usb a file to a computer from inside your application or any other way to achieve this? As ideally I want the user to be able to click an export button within the application and without exiting somehow get the file onto the computer...
I thought that maybe I would need to create a windows application and maybe use a tcp/bluetooth/other to connect from the phone app to the desktop app and then stream the data over, but would rather not have to write another application if a way already exists (which I doubt it will)
I would even find it acceptable at the moment to just build a file and output it to somewhere on the local device and just tell the user to copy it to their computer...