FileUpload.
The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications..
Here is the list of declaration for commons-fileupload. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.0</version> </dependency>
If you think this Maven repository POM file listing for commons-fileupload is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The commons-fileupload-1.0 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Servlet | servletapi 2.3 Java Servlet technology provides Web developers with a simple, consistent mechanism for extending the functionality of a Web server and for accessing existing business systems. | 20 |
JUnit | junit 3.8.1 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1966 |
The following table lists the most popular artifacts which are depending on commons-fileupload-1.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring 1.2.9 Spring Framework | 27 |
XML | struts 1.2.9 The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a... | 43 |
XML | struts 1.2.4 The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a... | 12 |
The following packages are defined in the commons-fileupload-1.0.jar
org.apache.commons.fileupload
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <name>FileUpload</name> <version>1.0</version> <description>The FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications.</description> <url>http://jakarta.apache.org/commons/fileupload/</url> <issueManagement> <url>http://nagoya.apache.org/bugzilla/</url> </issueManagement> <inceptionYear>2002</inceptionYear> <dependencies> <dependency> <groupId>servletapi</groupId> <artifactId>servletapi</artifactId> <version>2.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> </project>