Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Latest commit

 

History

History
37 lines (29 loc) · 817 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 817 Bytes

TextKernelClient

Java client for the textkernel.com CV parser

Usage

The client is built and distributed with Maven

Maven dependencies

Add the dependency to your pom

<dependency>
 <groupId>com.youcruit.textkernel.client</groupId>
 <artifactId>TextKernelClient</artifactId>
 <version>0.3.16</version>
</dependency>

Simple usage:

String textKernelUrl = "https://home.textkernel.nl/sourcebox/processAtomicPost.do";
String username = "username";
String account = "account";
String password = "password";
String pathToFile = "example.pdf";
TextKernelClient tkclient = new TextKernelClient(textKernelUrl, username, account, password);
Profile p = tkclient.getProfile(new File(pathToFile));
System.out.println(p.getRawHtml());

Building

mvn clean install