File: base64.md

package info (click to toggle)
bnd 5.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 44,092 kB
  • sloc: java: 249,039; xml: 90,727; sh: 655; perl: 153; makefile: 95; python: 47; javascript: 9
file content (29 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
class: Macro
title: base64 ';' FILE [';' LONG ]
summary: Get the Base64 encoding of a file
---

    static final String _base64Help = "${base64;<file>[;fileSizeLimit]}, get the Base64 encoding of a file";

    /**
     * Get the Base64 encoding of a file.
     *
     * @throws IOException
     */
    public String _base64(String... args) throws IOException {
        verifyCommand(args, _base64Help, null, 2, 3);

        File file = domain.getFile(args[1]);
        long maxLength = 100_000;
        if (args.length > 2)
            maxLength = Long.parseLong(args[2]);

        if (file.length() > maxLength)
            throw new IllegalArgumentException(
                "Maximum file size (" + maxLength + ") for base64 macro exceeded for file " + file);

        return Base64.encodeBase64(file);
    }