org.javalite.common.Util.bytes()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(239)

本文整理了Java中org.javalite.common.Util.bytes()方法的一些代码示例,展示了Util.bytes()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.bytes()方法的具体详情如下:
包路径:org.javalite.common.Util
类名称:Util
方法名:bytes

Util.bytes介绍

[英]Reads contents of the input stream fully and returns it as byte array.
[中]完全读取输入流的内容,并将其作为字节数组返回。

代码示例

代码示例来源:origin: javalite/activejdbc

  1. /**
  2. * Reads file into a byte array.
  3. *
  4. * @param file file to read.
  5. * @return content of file.
  6. * @throws java.io.IOException
  7. */
  8. public static byte[] read(File file) throws IOException {
  9. FileInputStream is = new FileInputStream(file);
  10. try {
  11. return bytes(is);
  12. } finally {
  13. closeQuietly(is);
  14. }
  15. }

代码示例来源:origin: javalite/activejdbc

  1. /**
  2. * Reads contents of resource fully into a byte array.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as byte array.
  6. */
  7. public static byte[] readResourceBytes(String resourceName) {
  8. InputStream is = Util.class.getResourceAsStream(resourceName);
  9. try {
  10. return bytes(is);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. } finally {
  14. closeQuietly(is);
  15. }
  16. }

代码示例来源:origin: javalite/activejdbc

  1. /**
  2. * Converts <code>java.sql.Blob</code> to bytes array.
  3. *
  4. * @param blob Blob to be converted
  5. * @return blob converted to byte array
  6. */
  7. public static byte[] toBytes(Blob blob) {
  8. InputStream is = null;
  9. try {
  10. is = blob.getBinaryStream();
  11. return bytes(is);
  12. } catch (Exception e) {
  13. throw new ConversionException(e);
  14. } finally {
  15. closeQuietly(is);
  16. }
  17. }

代码示例来源:origin: javalite/activeweb

  1. /**
  2. * Constructor to be used in tests, field name and file name are set to File name.
  3. * Content type set to "text/plain".
  4. *
  5. * @param file file to send.
  6. * @throws IOException
  7. */
  8. public FileItem(File file) throws IOException {
  9. super(file.getName(), file.getName(), true, "text/plain", Util.bytes(new FileInputStream(file)));
  10. }

代码示例来源:origin: javalite/activeweb

  1. /**
  2. * Reads entire request data as byte array. Do not use for large data sets to avoid
  3. * memory issues.
  4. *
  5. * @return data sent by client as string.
  6. * @throws IOException
  7. */
  8. protected byte[] getRequestBytes() throws IOException {
  9. return Util.bytes(RequestContext.getHttpRequest().getInputStream());
  10. }

代码示例来源:origin: com.github.tchoulihan/javalite-common

  1. /**
  2. * Reads file into a byte array.
  3. *
  4. * @param file file to read.
  5. * @return content of file.
  6. * @throws java.io.IOException
  7. */
  8. public static byte[] read(File file) throws IOException {
  9. FileInputStream is = new FileInputStream(file);
  10. try {
  11. return bytes(is);
  12. } finally {
  13. closeQuietly(is);
  14. }
  15. }

代码示例来源:origin: org.javalite/javalite-common

  1. /**
  2. * Reads contents of resource fully into a byte array.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as byte array.
  6. */
  7. public static byte[] readResourceBytes(String resourceName) {
  8. InputStream is = Util.class.getResourceAsStream(resourceName);
  9. try {
  10. return bytes(is);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. } finally {
  14. closeQuietly(is);
  15. }
  16. }

代码示例来源:origin: org.javalite/javalite-common

  1. /**
  2. * Reads file into a byte array.
  3. *
  4. * @param file file to read.
  5. * @return content of file.
  6. * @throws java.io.IOException
  7. */
  8. public static byte[] read(File file) throws IOException {
  9. FileInputStream is = new FileInputStream(file);
  10. try {
  11. return bytes(is);
  12. } finally {
  13. closeQuietly(is);
  14. }
  15. }

代码示例来源:origin: com.github.tchoulihan/javalite-common

  1. /**
  2. * Reads contents of resource fully into a byte array.
  3. *
  4. * @param resourceName resource name.
  5. * @return entire contents of resource as byte array.
  6. */
  7. public static byte[] readResourceBytes(String resourceName) {
  8. InputStream is = Util.class.getResourceAsStream(resourceName);
  9. try {
  10. return bytes(is);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. } finally {
  14. closeQuietly(is);
  15. }
  16. }

代码示例来源:origin: javalite/activeweb

  1. /**
  2. * Reads contents of a file into a byte array at once.
  3. *
  4. * @return contents of a file as byte array.
  5. */
  6. public byte[] getBytes() {
  7. try {
  8. return Util.bytes(fileItemStream.openStream());
  9. } catch (Exception e) {
  10. throw new ControllerException(e);
  11. }
  12. }

代码示例来源:origin: com.github.tchoulihan/javalite-common

  1. /**
  2. * Converts <code>java.sql.Blob</code> to bytes array.
  3. *
  4. * @param blob Blob to be converted
  5. * @return blob converted to byte array
  6. */
  7. public static byte[] toBytes(Blob blob) {
  8. InputStream is = null;
  9. try {
  10. is = blob.getBinaryStream();
  11. return bytes(is);
  12. } catch (Exception e) {
  13. throw new ConversionException(e);
  14. } finally {
  15. closeQuietly(is);
  16. }
  17. }

代码示例来源:origin: org.javalite/javalite-common

  1. /**
  2. * Converts <code>java.sql.Blob</code> to bytes array.
  3. *
  4. * @param blob Blob to be converted
  5. * @return blob converted to byte array
  6. */
  7. public static byte[] toBytes(Blob blob) {
  8. InputStream is = null;
  9. try {
  10. is = blob.getBinaryStream();
  11. return bytes(is);
  12. } catch (Exception e) {
  13. throw new ConversionException(e);
  14. } finally {
  15. closeQuietly(is);
  16. }
  17. }

代码示例来源:origin: javalite/activeweb

  1. @Override
  2. public Class<?> loadClass(String name) throws ClassNotFoundException {
  3. try{
  4. if (name.startsWith("org.javalite.activeweb")) {
  5. return loadByParent(name);
  6. }
  7. if(name.endsWith("Controller") || name.contains("Controller$")
  8. || name.equals(Configuration.getRouteConfigClassName())){
  9. String pathToClassFile = name.replace('.', '/') + ".class";
  10. byte[] classBytes = bytes(getResourceAsStream(pathToClassFile));
  11. Class<?> daClass = defineClass(name, classBytes, 0, classBytes.length);
  12. LOGGER.debug("Loaded class: " + name);
  13. return daClass;
  14. }else{
  15. return loadByParent(name);
  16. }
  17. }
  18. catch(Exception e){
  19. LOGGER.debug("Failed to dynamically load class: " + name + ". Loading by parent class loader.");
  20. return loadByParent(name);
  21. }
  22. }

相关文章