(String str)
| 291 | } |
| 292 | |
| 293 | public static byte[] base64Decode(String str){ |
| 294 | // final Base64.Decoder decoder = new Base64.Decoder; |
| 295 | byte[] byteRes = new byte[]{}; |
| 296 | byteRes = Base64.getDecoder().decode(str); |
| 297 | return byteRes; |
| 298 | } |
| 299 | |
| 300 | public static boolean isURL(String url){ |
| 301 | if (url == null ){ |
no outgoing calls
no test coverage detected