ignores result of java.io.InputStream.read
846 단어 Inputstream
This method ignores the return value of one of the variants of
java.io.InputStream.read()
which can return multiple bytes. If the return value is not checked, the caller will not be able to correctly handle the case where fewer bytes were read than the caller requested. This is a particularly insidious kind of bug, because in many programs, reads from input streams usually do read the full amount of data requested, causing the program to fail only sporadically. 해결 방법:if(inputStream!=null) {Byte Array OutputStream bytestream = new Byte Array OutputStream(), int ch, while((ch = inputStream.read()! = -1) {bytestream. write(ch); } but = bytestream.toByteArray(); bytestream.close(); }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java InputStream 에서 네트워크 응답 응답 응답 데 이 터 를 읽 는 방법!(중요)이 방법 은 읽 기와 쓰기 작업 전에 데이터 흐름 에 몇 개의 바이트 가 읽 을 수 있 는 지 알 수 있 습 니 다.주의해 야 할 것 은 이 방법 이 로 컬 파일 에서 데 이 터 를 읽 을 때 일반적으로 문제 가 발...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.