Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 903 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 903 Bytes

HAR reader

Read HTTP Archives with Java.

<dependency>
  <groupId>de.sstoehr</groupId>
  <artifactId>har-reader</artifactId>
  <version>1.0.5</version>
</dependency>

Build Status Coverage Status Maven Central

Usage

Reading HAR from File:

Har har = HarReader.fromFile(new File("myhar.har"));
System.out.println(har.getLog().getCreator().getName());

Reading HAR from String:

Har har = HarReader.fromString("{ ... HAR-JSON-Data ... }");