Searched refs:bis (Results 1 – 10 of 10) sorted by relevance
78 BufferedInputStream bis = new BufferedInputStream(zipSrc.getInputStream(entry)); in main() local81 convert(bis, zos, targets); in main()83 while (bis.available() > 0) { in main()84 zos.write(bis.read()); in main()87 bis.close(); in main()
134 ByteArrayInputStream bis = new ByteArrayInputStream( in getOsuCertsForTest() local136 Certificate cert = certFactory.generateCertificate(bis); in getOsuCertsForTest()
102 BufferedInputStream bis = new BufferedInputStream(is); in DownloadFromUrl() local105 while ((current = bis.read()) != -1) { in DownloadFromUrl()
140 BufferedInputStream bis = new BufferedInputStream(inputStream); in inputStreamToString() local143 while ((len = bis.read(buffer)) != -1) { in inputStreamToString()
370 final BufferedInputStream bis = new BufferedInputStream(fis); in readFile() local372 reader.read(bis); in readFile()374 IoUtils.closeQuietly(bis); in readFile()
281 BufferedInputStream bis = null; in getRotationFromExifHelper() local287 bis = new BufferedInputStream(is); in getRotationFromExifHelper()288 ei.readExif(bis); in getRotationFromExifHelper()291 bis = new BufferedInputStream(is); in getRotationFromExifHelper()292 ei.readExif(bis); in getRotationFromExifHelper()304 Utils.closeSilently(bis); in getRotationFromExifHelper()
222 ByteArrayInputStream bis = new ByteArrayInputStream(buffer); in checksum() local225 while ((nRead = bis.read(buf)) >= 0) { in checksum()
618 BufferedInputStream bis = new BufferedInputStream(input); in readTextFile() local624 int length = bis.read(data); in readTextFile()638 len = bis.read(data); in readTextFile()655 len = bis.read(data); in readTextFile()661 bis.close(); in readTextFile()
335 final ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray()); in openDocumentThumbnail() local343 Streams.copy(bis, fos); in openDocumentThumbnail()
1051 final BufferedInputStream bis = new BufferedInputStream(is); in loadUserInternal() local1055 parser.setInput(bis, StandardCharsets.UTF_8.name()); in loadUserInternal()