greetings

hi all i want to ask how can i parse pdf file contains tables ,,so i can parse each table to datatable in my code and then all the tables in data set

i have downloaded abcpdf .net but i dont know how to use it

i am using vs .net 2010 c# ,,

thnxx

link|improve this question

50% accept rate
1  
-1 for not even looking at the documentation before asking. – Oded Nov 7 '10 at 8:35
i have seen the documentation ,,it's all about creation pdf ,,in my case i want to read data from an exsiting pdf and this pdf contains multiple tables all i want to map those tables to data tables ,,then adding them to data list – hatem Nov 7 '10 at 9:38
1  
@hatem: If you'd already looked at the documentation, you should have said so. – Jon Skeet Nov 7 '10 at 9:59
k,,tell me where is the section that talks about content extracting from pdf file,, – hatem Nov 7 '10 at 10:10
@hatem Search section is your friend! – Shimmy Nov 7 '10 at 15:42
show 2 more comments
feedback

3 Answers

Did you try looking at the documentation which includes a whole section of examples, including ones on tables?

link|improve this answer
yes i have looked on the documentation but i didn't find the one about extracting contents from table in pdf,,can u give me more details – hatem Nov 7 '10 at 9:47
@hatem: Did you try using Doc.Read and then seeing what the resulting document looks like in terms of its object model? – Jon Skeet Nov 7 '10 at 10:01
no i didnt,,can u give me an example ,,lets say i am having a pdf contains table for employee (empiD,empName,Title) and another table in the same pdf file contains another table departments (deptID,DeptName) i want in my application to parse those table to 2 datatables on for employee and another for departments,,thnx – hatem Nov 7 '10 at 10:03
feedback

From Large table example:

string theText = ReadDataFromFile(theRez + "text7.txt");
Doc theDoc = new Doc();
// set up document
theDoc.FontSize = 12;
theDoc.Rect.Inset(20, 20);


PDFTable theTable = new PDFTable(theDoc, 6);
// some columns extra width
theTable.SetColumnWidths(new double [] {2, 1, 3 , 2, 1, 4});
theTable.CellPadding = 5;
theTable.RepeatHeader = true;

theText = theText.Replace("\r\n", "\r");
string[] theRows = theText.Split(new char[] {'\r'});
int thePage = 1;
bool theShade = false;
for (int i = 0; i < theRows.Length; i++) {
  theTable.NextRow();
  string[] theCols = theRows[i].Split(new char[] {'\t'});
  theTable.AddHtml(theCols);
  if (theDoc.PageNumber > thePage) {
    thePage = theDoc.PageNumber;
    theShade = true;
  }
  if (theShade)
    theTable.FillRow("200 200 200", theTable.Row);
  theShade = ! theShade;
}
theDoc.Flatten();
theDoc.Save(Server.MapPath("table2.pdf"));
theDoc.Clear();

Use the Read() function to open existing files, then crawl thru the tables to get their data, and fill it in datatables as you like.

link|improve this answer
thnx for ur post,,but i need more details how can i read from that table and crawl thru it to extract data ,,or to parse the rows in that table to rows in my datatable,, – hatem Nov 7 '10 at 9:48
I am sorry but I think in the above post there are all the details you need. – Shimmy Nov 7 '10 at 15:43
could u please be more specific and tell me exactly the part in ur code that extracts the conent of pdf ,,all ur code is about creation table in pdf file not importing data from table in pdf file,,i have tried the read() function and it will not work for me ...thnx – hatem Nov 8 '10 at 7:37
I never used abcpdf, maybe if you update your question and provide some example and what exception you get, we will be able to help. – Shimmy Nov 9 '10 at 0:43
u never used it and u keep talking about ur post having to many details !!!!my pdf is arabic pdf so i cant use read() to convert it as the result text is unreadble due to arabic is an rtl language – hatem Nov 9 '10 at 7:53
feedback

I dont see how this will be easy to accomplish. I know you can iterate through the Doc and retrieve the text that makes up each page like this:

Doc doc1 = new WebSupergoo.ABCpdf7.Doc();
doc1.Read(pdf1);

for (int i = 1; i <= doc1.PageCount; i++)
{
    doc1.PageNumber = i;
    string text = doc1.GetText("Text");

    // parse text for data?
}

You may have to experiment to find a way to parse the text to map each string to its appropriate data field. I really hope theres a better way than that, but I cannot find one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.