/blade-core/src/main/java/com/blade/servlet/multipart/FileItem.java

https://gitlab.com/biezhi/blade · Java · 120 lines · 69 code · 26 blank · 25 comment · 6 complexity · 695d70c17c0e41c8f3c4396a443347a9 MD5 · raw file

  1. /**
  2. * Copyright (c) 2015, biezhi 王爵 (biezhi.me@gmail.com)
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.blade.servlet.multipart;
  17. import java.io.InputStream;
  18. import java.io.UnsupportedEncodingException;
  19. import java.util.Arrays;
  20. import blade.kit.io.FastByteArrayOutputStream;
  21. /**
  22. * 文件上传Item
  23. *
  24. * @author <a href="mailto:biezhi.me@gmail.com" target="_blank">biezhi</a>
  25. * @since 1.0
  26. */
  27. public class FileItem {
  28. private String name;
  29. private boolean isFile;
  30. private String fileName;
  31. private String contentType;
  32. private InputStream inputStream;
  33. public static final String FORM_DATA = "form-data";
  34. public static final String MULTIPART_FORM_DATA = "multipart/form-data";
  35. // 数据体缓存
  36. private FastByteArrayOutputStream outputStream;
  37. public void write(byte[] buf, int off, int len) {
  38. if (outputStream == null) {
  39. outputStream = new FastByteArrayOutputStream();
  40. }
  41. outputStream.write(buf, off, len);
  42. }
  43. // -----------------------------------------------------------------
  44. public String getName() {
  45. return name;
  46. }
  47. public void setName(String name) {
  48. this.name = name;
  49. }
  50. public String getFileName() {
  51. return fileName;
  52. }
  53. public void setFileName(String fileName) {
  54. this.fileName = fileName;
  55. }
  56. public String getContentType() {
  57. return contentType;
  58. }
  59. public void setContentType(String contentType) {
  60. this.contentType = contentType;
  61. }
  62. public boolean isFile() {
  63. return isFile;
  64. }
  65. public void setFile(boolean isFile) {
  66. this.isFile = isFile;
  67. }
  68. public byte[] getFileContent() {
  69. byte[] buf = outputStream.toByteArray();
  70. int dirtyCount = 2;
  71. // 最后会多出一个\r\n,
  72. // 根据ServletInputStream, \n 就算一行结束, 因此对于\r需要特殊判断
  73. if ('\r' != buf[buf.length - 2])
  74. dirtyCount = 1;
  75. return Arrays.copyOfRange(buf, 0, buf.length - dirtyCount);
  76. }
  77. public String getString(String encoding){
  78. try {
  79. return outputStream == null ? null : new String(getFileContent(), encoding);
  80. } catch (UnsupportedEncodingException e) {
  81. e.printStackTrace();
  82. }
  83. return null;
  84. }
  85. public String getString() {
  86. return outputStream == null ? null : new String(getFileContent());
  87. }
  88. public InputStream getInputStream() {
  89. return inputStream;
  90. }
  91. public void setInputStream(InputStream inputStream) {
  92. this.inputStream = inputStream;
  93. }
  94. }