Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the C# equivalent of Apache POI api?

Tags:

apache-poi

I have a need to replicate a framework I built ij Java using the Apache POI api to read data from MS Excel. I have no idea what to use that is an equivalent of apache POI library. Any ideas please anyone?

like image 766
Ibexy I Avatar asked Sep 06 '12 13:09

Ibexy I


People also ask

What is C -- used for?

C-- is a "portable assembly language", designed to ease the implementation of compilers that produce high-quality machine code. This is done by delegating low-level code-generation and program optimization to a C-- compiler.

What is C language in simple words?

C is a structured, procedural programming language that has been widely used both for operating systems and applications and that has had a wide following in the academic community. Many versions of UNIX-based operating systems are written in C.

What is history of C language?

C programming language was developed in 1972 by Dennis Ritchie at bell laboratories of AT&T (American Telephone & Telegraph), located in the U.S.A. Dennis Ritchie is known as the founder of the c language. It was developed to overcome the problems of previous languages such as B, BCPL, etc.


1 Answers

It depends on what you want to do.

One option is NPOI, which is a .Net port of Apache POI to .Net

Another option is to use IKVM, and then Apache POI itself directly from within .Net.

like image 140
Gagravarr Avatar answered Jan 03 '23 22:01

Gagravarr