pimvdnoll / scanii-java

scanii.com api client in java

Home Page:http://scanii.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A pure Java interface to the Scanii content processing service - https://scanii.com

How to use this client

Installing using Maven coordinates:

<dependency>
  <groupId>com.uvasoftware</groupId>
  <artifactId>scanii-java</artifactId>
  <version>2.10</version>
</dependency>

Installing using gradle:

compile group: 'com.uvasoftware', name: 'scanii-java', version: '2.10'

Basic usage:

 // creating the client
 ScaniiClient client = new ScaniiClient(ScaniiTarget.latest(), KEY, SECRET);
 
 // scans a file
 result = client.process(Paths.get("/tmp/foo.doc"));
 System.out.println(result.getFindings()); 

Please note that you will need a valid scanii.com account and API Credentials.

More advanced usage examples can be found here

General documentation on scanii can be found here

About

scanii.com api client in java

http://scanii.com/

License:Apache License 2.0


Languages

Language:Java 100.0%