전체 글

Linux

XSSFWorkbook 생성 시 FontConfiguration에서 NullPointerException이 발생할 때

특정 서버에서만 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..

Linux

update glibc to 2.17 for CentOS 6

https://gist.github.com/harv/f86690fcad94f655906ee9e37c85b174 wget http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-2.17-55.el6.x86_64.rpm wget http://copr-be.cloud.fedoraproject.org/results/mosquito/myrepo-el6/epel-6-x86_64/glibc-2.17-55.fc20/glibc-common-2.17-55.el6.x86_64.rpm wget http://copr-be.cloud.fedoraproject.org/results/mosquito/..

Linux

[CentOS7] yum groupinstall 명령어 오류 - no packages in any requested group available to install or update

최소버전으로 설치 후 각종 패키지를 설치하기 위해 이용 하는 명령어 # 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 해결 방법 옵션 패키지도 함께 설치하도록 추가한다. #..

Algorithm/프로그래머스

[알고리즘] 문자열 내 p와 y의 개수 Java

import java.util.Arrays; class Solution { boolean solution(String s) { String str = s.toLowerCase(); long p = Arrays.stream(str.split("")).filter(i -> i.equals("p")).count(); long y = Arrays.stream(str.split("")).filter(i -> i.equals("y")).count(); return p == y; } }

Algorithm/프로그래머스

[알고리즘] 자릿수 더하기 Java

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; } }

Algorithm/프로그래머스

[알고리즘] 숨어있는 숫자의 덧셈 (2) Java

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..

Algorithm/프로그래머스

[알고리즘] 외계행성의 나이 Java

class Solution { public String solution(int age) { String answer = ""; String s = String.valueOf(age); String[] split = s.split(""); for (int i = 0; i < split.length; i++) { int a = Integer.parseInt(split[i]) + 97; char ch = (char) a; answer += ch; } return answer; } }

Algorithm/프로그래머스

[알고리즘] 배열 자르기 Java

import java.util.Arrays; class Solution { public int[] solution(int[] numbers, int num1, int num2) { int[] answer = Arrays.copyOfRange(numbers, num1, num2+1); return answer; } }

rw-
Today I Learned