Mercurial Hosting > luan
annotate src/goodjava/util/GoodUtils.java @ 1624:fe611f6e3c28
more content types
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 07 Aug 2021 20:01:46 -0600 |
parents | 1cc6c7fa803d |
children | 2f4c99c02436 |
rev | line source |
---|---|
1583 | 1 package goodjava.util; |
2 | |
3 import java.io.UnsupportedEncodingException; | |
4 import java.util.Base64; | |
5 | |
6 | |
7 public final class GoodUtils { | |
8 | |
9 public static byte[] getBytes(String s,String charsetName) { | |
10 try { | |
11 return s.getBytes(charsetName); | |
12 } catch(UnsupportedEncodingException e) { | |
13 throw new RuntimeException(e); | |
14 } | |
15 } | |
16 | |
17 public static String base64Encode(String s) { | |
18 return Base64.getEncoder().encodeToString(getBytes(s,"UTF-8")); | |
19 } | |
20 } |