1

how read .xls file with cpp in linux ?, i found this library libxls but is for C , and found others but not free.

richie-torres
  • 746
  • 1
  • 8
  • 29

3 Answers3

1

i use libxls and made a mix with c and c++ code:

//my c++ code

 extern "C" {
   #include "xls.h"
 }

...
richie-torres
  • 746
  • 1
  • 8
  • 29
0

I've found the Excel Format lib, which works on windows and linux. It's got some caveats but if you're looking for some basic functionalities that should get you going.

fduff
  • 3,671
  • 2
  • 30
  • 39
0

the file format is documented here if you would like to write your own parser for it

http://www.wotsit.org/list.asp?search=xls&button=GO%21

Stowelly
  • 1,260
  • 2
  • 12
  • 31
  • i cant view any info in this site :( , and your answer means no library exists ? or a more easy way that make own parser ? – richie-torres Jan 04 '12 at 14:00
  • hmm, might be temporarily down, that site is where i usually get all my file format docs from. and I have no idea about the existence of such a library, was just providing you with an alternative option if you cannot find one. – Stowelly Jan 04 '12 at 14:06