如何将字符串、字节数组转为输入流
作者:卜大爷
这篇文章主要介绍了如何将字符串、字节数组转为输入流问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
将字符串、字节数组转为输入流
将字符串转成输入流:
String str = "budaye"; ByteArrayInputStream in = new ByteArrayInputStream(str.getBytes("UTF-8"));
ByteArrayInputStream是字节数组输入流,它继承于InputStream。
它包含一个内部缓冲区,该缓冲区包含从流中读取的字节。
如果我们想要将字符串或者字节数组转换成字符流,可以使用ByteArrayInputStream类。
输入流,输出流,文件,字节数组,Base64字符串互相转换
输入流转换成字节数组
通过我封装的下载服务获取输入流,然后使用 StreamUtils.copyToByteArray去获取字节数组
InputStream inputStream = fileClient.downloadFile(tenantId, HivpBaseConstants.FileUpload.BUCKET_NAME_CAN, l.getUrl()); byte[] imgByte = StreamUtils.copyToByteArray(inputStream);
注意流只能使用一次,当用完流之后需要关闭流。
输入流转换成base64编码字符串
我们需要先转换成字节数组然后再转换字符串
- 转换字节数组另一种解决方式
public static byte[] readInputStream(InputStream is) { ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int length = 0; try { while ((length = is.read(buffer)) != -1) { baos.write(buffer, 0, length); } baos.flush(); } catch (IOException e) { logger.error("IOException", e); } byte[] data = baos.toByteArray(); try { is.close(); baos.close(); } catch (IOException e) { logger.error("IOException", e); } return data; }
- 字节数组转换成Base64字符串
imageFile = Base64Utils.encodeToString(data);
输入流转换为文件
//数据流转MultipartFile文件 MultipartFile multipartFile = new MockMultipartFile("file", "file" +"."+ fileType, fileType, inputStream); ResponseEntity<ResponseCommonDTO> recognizeResult = hcanRemoteService.originalCheck(tenantId, companyCode, employeeNumber, multipartFile);
将本地的文件转换成输入流
String path = "C:\\Users\\mai\\Desktop\\发票测试集合\\aaaaaaaaaa.pdf"; File file = new File(path); InputStream ins = new FileInputStream(file);
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。