[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 인코딩, 디코딩