Default.aspx.cs
using System; using System.IO; using Bytescout.PDFExtractor; namespace BatchProcessing { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { // Directory containing test files String inputFolder = Server.MapPath(@".\bin"); // Create Bytescout.PDFExtractor.TextExtractor instance TextExtractor extractor = new TextExtractor(); extractor.RegistrationName = "demo"; extractor.RegistrationKey = "demo"; Response.Clear(); Response.ContentType = "text/html"; // Get PDF files string[] pdfFiles = Directory.GetFiles(inputFolder, "*.pdf"); foreach (string file in pdfFiles) { // Load document extractor.LoadDocumentFromFile(file); Response.Output.Write("<pre>"); // Extract document text and write to the output stream extractor.SaveTextToStream(Response.OutputStream); Response.Output.Write("</pre>"); Response.Output.Write("<br/>"); // Reset the extractor before loading another file extractor.Reset(); } Response.End(); } } }
Web.config
<?xml version="1.0"?> <configuration> <appSettings/> <connectionStrings/> <system.web> <!-- Set compilation debug="true" to insert debugging symbols into the compiled page. Because this affects performance, set this value to true only during development. --> <compilation debug="true" targetFramework="4.0"/> <!-- The <authentication> section enables configuration of the security authentication mode used by ASP.NET to identify an incoming user. --> <authentication mode="Windows"/> <!-- The <customErrors> section enables configuration of what to do if/when an unhandled error occurs during the execution of a request. Specifically, it enables developers to configure html error pages to be displayed in place of a error stack trace. <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> <error statusCode="403" redirect="NoAccess.htm" /> <error statusCode="404" redirect="FileNotFound.htm" /> </customErrors> --> <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/> </system.web> </configuration>
Click here to get your Free Trial version of the SDK
also available as: