mirror of
https://github.com/github/codeql.git
synced 2026-01-04 10:10:20 +01:00
16 lines
311 B
Java
16 lines
311 B
Java
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
public class SpringMultiPart {
|
|
MultipartFile file;
|
|
|
|
public void test() throws Exception {
|
|
file.getBytes();
|
|
file.isEmpty();
|
|
file.getInputStream();
|
|
file.getResource();
|
|
file.getName();
|
|
file.getContentType();
|
|
file.getOriginalFilename();
|
|
}
|
|
}
|