Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 281 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 281 Bytes

HTML 2 PDF Conversor

How to use

public class MyClass {

    public static void main(String[] args) throws Exception {
        String uriHtml = args[0];
        String destinationPath = args[1];
        new Converter(uriHtml, destinationPath).convert();
    }

}