类 ByteArrayResource

java.lang.Object
com.alibaba.nacos.common.packagescan.resource.AbstractResource
com.alibaba.nacos.common.packagescan.resource.ByteArrayResource
所有已实现的接口:
InputStreamSource, Resource

public class ByteArrayResource extends AbstractResource
Copy from https://github.com/spring-projects/spring-framework.git, with less modifications Resource implementation for a given byte array.

Creates a ByteArrayInputStream for the given byte array.

Useful for loading content from any given byte array, without having to resort to a single-use InputStreamResource. Particularly useful for creating mail attachments from local content, where JavaMail needs to be able to read the stream multiple times.

从以下版本开始:
1.2.3
作者:
Juergen Hoeller, Sam Brannen
另请参阅:
  • 构造器详细资料

    • ByteArrayResource

      public ByteArrayResource(byte[] byteArray)
      Create a new ByteArrayResource.
      参数:
      byteArray - the byte array to wrap
    • ByteArrayResource

      public ByteArrayResource(byte[] byteArray, String description)
      Create a new ByteArrayResource with a description.
      参数:
      byteArray - the byte array to wrap
      description - where the byte array comes from
  • 方法详细资料