java create inputstream from string
InputStream targetStream = new ByteArrayInputStream("your string".getBytes());
java create inputstream from string
InputStream targetStream = new ByteArrayInputStream("your string".getBytes());
write input stream to file java
InputStream pdf = // greate some input stream data
try (FileOutputStream outputStream = new FileOutputStream(new File("/Users/kirkbrown/documents/my.pdf"))) {
int read;
byte[] bytes = new byte[1024];
while ((read = pdf.read(bytes)) != -1) {
outputStream.write(bytes, 0, read);
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us