Untitled
Anonymous
plain_text
09/25/2024 9:24 AM
668 B
18
Indexable
File file = getFile(TEST_FILE_PATH_UTILS + "/"+ "ips_filter_test.csv");
try {
FileInputStream fileInputStream = new FileInputStream(file);
String fileName = file.getName();
MultipartFile multipartFile = new MockMultipartFile(fileName, fileName, "application/octet-stream", fileInputStream.readAllBytes());
ipFilterService.processIPFilterFile(multipartFile);
} catch (Exception e) {
throw new RuntimeException(e);
}Editor is loading...
Leave a Comment