Mercurial Hosting > luan
annotate src/goodjava/util/GoodUtils.java @ 1674:af18eacf187c
automatic restore
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sun, 29 May 2022 23:38:34 -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 } |
