Home | History | Annotate | Download | only in multipart

Lines Matching refs:fileName

72     protected static final String FILE_NAME = "; filename=";
152 * @param fileName the file name
158 public FilePart(String name, String fileName, File file)
160 this(name, new FilePartSource(fileName, file), null, null);
167 * @param fileName the file name
177 public FilePart(String name, String fileName, File file, String contentType, String charset)
179 this(name, new FilePartSource(fileName, file), contentType, charset);
193 String filename = this.source.getFileName();
194 if (filename != null) {
197 out.write(EncodingUtils.getAsciiBytes(filename));