如何在Postman中上传文件和JSON数据?

2022-08-31 04:46:16

我正在使用Spring MVC,这是我的方法:

/**
* Upload single file using Spring Controller.
*/
@RequestMapping(value = "/uploadFile", method = RequestMethod.POST)
public @ResponseBody ResponseEntity<GenericResponseVO<? extends IServiceVO>> uploadFileHandler(
            @RequestParam("name") String name,
            @RequestParam("file") MultipartFile file,
            HttpServletRequest request,
            HttpServletResponse response) {

    if (!file.isEmpty()) {
        try {
            byte[] bytes = file.getBytes();

            // Creating the directory to store file
            String rootPath = System.getProperty("catalina.home");
            File dir = new File(rootPath + File.separator + "tmpFiles");
            if (!dir.exists()) {
                dir.mkdirs();
            }

            // Create the file on server
            File serverFile = new File(dir.getAbsolutePath() + File.separator + name);
            BufferedOutputStream stream = new BufferedOutputStream(new FileOutputStream(serverFile));
            stream.write(bytes);
            stream.close();

            System.out.println("Server File Location=" + serverFile.getAbsolutePath());

            return null;
        } catch (Exception e) {
            return null;
        }
    }
}


我需要在postman和文件中传递会话ID。我该怎么做?


答案 1

在 Postman 中,将方法类型设置为 POST

然后选择“正文->表单数据->输入参数名称(根据您的代码的文件)

在“键”字段的右侧,将鼠标悬停在其上时,有一个下拉菜单可在“文本/文件”之间进行选择。选择“文件”,然后“值”字段中将显示“选择文件”按钮。

对于其余基于“文本”的参数,您可以像通常使用postman一样发布它。只需输入参数名称,然后从右侧下拉菜单中选择“文本”,然后输入任何值,点击发送按钮。应调用控制器方法。


答案 2

缺少的视觉指南

您必须首先找到几乎看不见的浅灰白下拉列表,这是解锁按钮的神奇钥匙。FileChoose Files

选择选择然后找到“文件”下拉列表,然后选择“文件”,只有这样,“选择文件”按钮才会神奇地出现:POSTBody->form-data

Postman POST file setup - (Text,File) dropdown highlighted