-
public interface Part
This class represents a part or form item that was received within a
multipart/form-data
POST request.- Since:
- Servlet 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
delete()
Deletes the underlying storage for a file item, including deleting any associated temporary disk file.String
getContentType()
Gets the content type of this part.String
getHeader(String name)
Returns the value of the specified mime header as aString
.Collection<String>
getHeaderNames()
Gets the header names of this Part.Collection<String>
getHeaders(String name)
Gets the values of the Part header with the given name.InputStream
getInputStream()
Gets the content of this part as an InputStreamString
getName()
Gets the name of this partlong
getSize()
Returns the size of this fille.String
getSubmittedFileName()
Gets the file name specified by the clientvoid
write(String fileName)
A convenience method to write this uploaded item to disk.
-
-
-
Method Detail
-
getInputStream
InputStream getInputStream() throws IOException
Gets the content of this part as an InputStream- Returns:
- The content of this part as an InputStream
- Throws:
IOException
- If an error occurs in retrieving the contet as an InputStream
-
getContentType
String getContentType()
Gets the content type of this part.- Returns:
- The content type of this part.
-
getName
String getName()
Gets the name of this part- Returns:
- The name of this part as a String
-
getSubmittedFileName
String getSubmittedFileName()
Gets the file name specified by the client- Returns:
- the submitted file name
- Since:
- Servlet 3.1
-
getSize
long getSize()
Returns the size of this fille.- Returns:
- a
long
specifying the size of this part, in bytes.
-
write
void write(String fileName) throws IOException
A convenience method to write this uploaded item to disk.This method is not guaranteed to succeed if called more than once for the same part. This allows a particular implementation to use, for example, file renaming, where possible, rather than copying all of the underlying data, thus gaining a significant performance benefit.
- Parameters:
fileName
- the name of the file to which the stream will be written. The file is created relative to the location as specified in the MultipartConfig- Throws:
IOException
- if an error occurs.
-
delete
void delete() throws IOException
Deletes the underlying storage for a file item, including deleting any associated temporary disk file.- Throws:
IOException
- if an error occurs.
-
getHeader
String getHeader(String name)
Returns the value of the specified mime header as aString
. If the Part did not include a header of the specified name, this method returnsnull
. If there are multiple headers with the same name, this method returns the first header in the part. The header name is case insensitive. You can use this method with any request header.- Parameters:
name
- aString
specifying the header name- Returns:
- a
String
containing the value of the requested header, ornull
if the part does not have a header of that name
-
getHeaders
Collection<String> getHeaders(String name)
Gets the values of the Part header with the given name.Any changes to the returned
Collection
must not affect thisPart
.Part header names are case insensitive.
- Parameters:
name
- the header name whose values to return- Returns:
- a (possibly empty)
Collection
of the values of the header with the given name
-
getHeaderNames
Collection<String> getHeaderNames()
Gets the header names of this Part.Some servlet containers do not allow servlets to access headers using this method, in which case this method returns
null
Any changes to the returned
Collection
must not affect thisPart
.- Returns:
- a (possibly empty)
Collection
of the header names of this Part
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 18/08/2025 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-javaee-rf-javax/servlet/http/part.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur van deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.