[Java] java.io.IOException: Server returned HTTP response code:500 for URL 해결 방법
2022. 8. 29. 20:37
프로그래밍/JAVA
java.io.IOException: Server returned HTTP response code:500 for URL 해결 방법 👉 나의 경우 파라미터 인코딩이 안돼서 나는 에러였음 인코딩한 파라미터를 url에 전달하면 오류 안남 적용 예시 String word = "parameter"; String encodeResult = URLEncoder.encode(word, "UTF-8"); String url = "http://localhost:8983/solr/solrProject/select?fq=title:"+encodeResult; 참고💡 URL 인코딩, 디코딩
[Java] URL 인코딩, 디코딩
2022. 8. 26. 20:30
프로그래밍/JAVA
URL 인코딩하는 방법 String word = '인코딩 할 문자열' String encodeResult = URLEncoder.encode(word, "UTF-8"); URL 디코딩하는 방법 String word = '디코딩 할 문자열' String decodeResult = URLDecoder.decode(word, "UTF-8");