[swexpert] 1928. Base 64 Decoder (D2, java)
728x90
반응형
다행이도 자바는 라이브러리를 제공해준다 엔코딩, 디코딩을 처음 해보는 것 같다
import java.util.Base64.Decoder;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
sc.nextLine();
for (int i = 0; i <t; i++) {
String s=sc.nextLine();
byte[] bytes=s.getBytes();
Decoder decoder=java.util.Base64.getDecoder();
byte[] decodeBytes=decoder.decode(bytes);
System.out.printf("#%d %s\n",i+1,new String(decodeBytes));
}
sc.close();
}
}
728x90
반응형
'swexpert' 카테고리의 다른 글
swexpert 1289. 원재의 메모리 복구하기 (java) (0) | 2021.02.01 |
---|---|
[swexpert] 1284. 수도 요금 경쟁 (java, D2) (0) | 2021.01.19 |
[swexpert] 1954. 달팽이 숫자 (java, D2) (0) | 2021.01.18 |
[swexpert] 2019. 더블더블 (java, D1) (0) | 2021.01.15 |
[swexpert] 2029. 몫과 나머지 출력하기 (D1 , java) (0) | 2021.01.14 |
TAGS.