Mercurial Hosting > luan
view src/goodjava/util/GoodUtils.java @ 1699:e6750146faa1
no restart on backup
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Tue, 28 Jun 2022 16:13:37 +0300 |
parents | 1cc6c7fa803d |
children | 2f4c99c02436 |
line wrap: on
line source
package goodjava.util; import java.io.UnsupportedEncodingException; import java.util.Base64; public final class GoodUtils { public static byte[] getBytes(String s,String charsetName) { try { return s.getBytes(charsetName); } catch(UnsupportedEncodingException e) { throw new RuntimeException(e); } } public static String base64Encode(String s) { return Base64.getEncoder().encodeToString(getBytes(s,"UTF-8")); } }