All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.co.mruoc.file.content.Base64Encoder Maven / Gradle / Ivy

Go to download

Code library to easily load files and file from the classpath or file system file

There is a newer version: 7.0.4
Show newest version
package uk.co.mruoc.file.content;

import java.util.Base64;

public class Base64Encoder {

    public String encode(String input) {
        byte[] bytes = Base64.getEncoder().encode(input.getBytes());
        return new String(bytes);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy