0

I want to create a software probably in .NET or JAVA that will be connected with a digital scale. I want exported data to be able to open with Excel. What are my options ?

  • CSV file ?
  • Excel interop .net library?
  • Other?

I guess csv is a solution but doesnt allow any extra stuff.. However i dont want data to be lost so i think that in case of computer crash using interop .net file maybe be corrupted. In case with csv it wont be corrupted. Is there any alternative solution ?

GorillaApe
  • 3,611
  • 10
  • 63
  • 106

2 Answers2

1

If you want to create Excel files, try to use OpenXML or some lib, which wrap it. To find some data in already existed file, OleDb can be faster.

Community
  • 1
  • 1
Unril
  • 106
  • 1
  • 3
0

I'd prefer CSV as it is easier to move around from one system/language to another with fewer codes to change [Java to .Net or .Net to Java]

codingbiz
  • 26,179
  • 8
  • 59
  • 96