특정 서버에서만 XSSFWorkbook생성 시 FontConfiguration에서 NullPointerException이 발생 오류 내용 및 원인 특정 서버에서만 XSSFWorkbook.createSheet()을 했을 때 아래와 같은 예외가 발생 2023-10월-31 12:44:58 오후 [http-nio-19080-exec-2] DEBUG org.springframework.web.servlet.DispatcherServlet - Could not complete request java.lang.NullPointerException: null at sun.awt.FontConfiguration.getVersion(FontConfiguration.java:1264) ~[?:1.8.0_342] at sun..
최소버전으로 설치 후 각종 패키지를 설치하기 위해 이용 하는 명령어 # yum groupinstall 에러 발생 # yum groupinstall "Development Tools" There is no installed groups file. Maybe run: yum groups mark convert (see man yum) Warning: Group Development Tools not have any packages to install. Maybe run: yum groups mark install (see man yum) No packages in any requested group available to install or update 해결 방법 옵션 패키지도 함께 설치하도록 추가한다. #..
public int solution(int n) { int answer = 0; String[] split = String.valueOf(n).split(""); for (String s : split) { answer += Integer.parseInt(s); } return answer; } 다른 사람의 풀이 public class Solution { public int solution(int n) { int answer = 0; while (n != 0) { answer += n % 10; n /= 10; } return answer; } }
class Solution { public int solution(String my_string) { int answer = 0; String[] split = my_string.split("[^0-9]", -1); for (String s : split) { if (!s.equals("")) { answer += Integer.parseInt(s); } } return answer; } } 다른 사람의 풀이 class Solution { public int solution(String my_string) { int answer = 0; String[] str = my_string.replaceAll("[a-zA-Z]", " ").split(" "); for(String s : str){ if(!s.eq..