我的html中有一个input type = file标签,允许用户选择多个文件。表单的操作是REST Web服务:
@POST
@Path("savefile")
@Produces ({MediaType.TEXT_PLAIN})
public String createObjects(
@FormDataParam("datafile") FormDataMultiPart file,
@FormParam("username") String unm
//@Context HttpServletRequest request
){....}
最初,我使用请求对象检索请求中的所有FileItem,然后将其保存到服务器。没问题。现在我想发送一个字符串数据和文件。为此,我读到参数需要是FormDataParam类型。因此我添加了该参数。这是我的客户代码:
<form id="form1" action="http://comp1:8080/RestWSGS/jersey/UploadFiles/savefile"
enctype="multipart/form-data" method="post">
<input name="username" type="text" style="display:none" value="abc"/>
<input id="loadId" multiple="multiple"
type="file" name="datafile" required="required" autofocus="autofocus"
onchange="selectFiles(this)"/>
<div>
<input style="display: none;" type="submit" value="Send">
</div>
</form>
我不确定文件参数的类型是什么,允许多个文件在其中???? 文件参数给我多个文件还是我必须恢复到@Context注入?如果是这样,我将如何检索字符串参数?
欢迎任何帮助!
编辑: 我已经将我的REST修改为以下内容:
@POST
@Path("savefile")
//@Consumes (MediaType.MULTIPART_FORM_DATA)
public void createObjects(
//@FormDataParam("datafile") FormDataMultiPart file,
//@FormParam("username") String unm
@Context HttpServletRequest request
)
{
try
{
FileHandler f;
f = new FileHandler(new File (getClass().getResource("/" +getClass().getName().substring(
0, getClass().getName().indexOf("."))).getPath()).getParent().replaceAll("\\\\", "\\\\\\\\") + "/mylog.log");
logger.addHandler(f);
}
catch (SecurityException e1)
{
logger.info(e1.getMessage());
}
catch (IOException e1)
{
logger.info(e1.getMessage());
//e1.printStackTrace();
}
ApplicationConstants.ROOTPATH = new File (getClass().getResource("/" +getClass().getName().substring(
0, getClass().getName().indexOf("."))).getPath()).getParent().replaceAll("\\\\", "\\\\\\\\") ;
ApplicationConstants.ROOTPATH = ApplicationConstants.ROOTPATH.substring
(0, ApplicationConstants.ROOTPATH.indexOf("\\") + 2);
String user = request.getParameter("username");
logger.info("ApplicationConstants.ROOTPATH" + ApplicationConstants.ROOTPATH);
try
{
for (Part part : request.getParts())
{
try
{
logger.info("part = " + part.getName());
if (!part.getName().equalsIgnoreCase("username"))
{
String fileName = processFileName(part.getName());
part.write(new File(ApplicationConstants.ROOTPATH + user + "\\" + fileName).getPath());
}
else
{
user = request.getParameter("username");
logger.info("user = " + user);
}
}
catch (IOException e)
{
logger.info(e.getMessage());
}
}
}
catch (IOException e)
{
}
catch (ServletException e)
{
}
}
但我总是从request.getParameter(“username”)获取值为null。我不知道出了什么问题!!以多部分/表格数据形式发送其他数据是否违法?我需要一些指示。请在此代码中提出任何改进建议。
答案 0 :(得分:5)
以下是适用于我的解决方案。可以使用部件中的输入流访问多部分/ formdata请求时的请求部分。我想将一个字符串和一些文件发送到我的REST Web服务。我发现在几个网站上发布了一个ServletFileUpload / FIleItem示例,但我无法检索字符串(我认为如果所有数据都不是文件,则会出现异常类型)。因此,我将我的Web服务修改为以下内容,而不是我可以处理字符串和一些文件:
private static Logger logger = Logger.getLogger("UploadFiles");
@POST
@Path("savefile")
public void createObjects(@Context HttpServletRequest request)
{
try
{
FileHandler f;
f = new FileHandler(new File (getClass().getResource("/" +getClass().getName().substring(
0, getClass().getName().indexOf("."))).getPath()).getParent().replaceAll("\\\\", "\\\\\\\\") + "/mylog.log");
logger.addHandler(f);
}
catch (SecurityException e1)
{
logger.info(e1.getMessage());
}
catch (IOException e1)
{
logger.info(e1.getMessage());
}
ApplicationConstants.ROOTPATH = new File (getClass().getResource("/" +getClass().getName().substring(
0, getClass().getName().indexOf("."))).getPath()).getParent().replaceAll("\\\\", "\\\\\\\\") ;
ApplicationConstants.ROOTPATH = ApplicationConstants.ROOTPATH.substring
(0, ApplicationConstants.ROOTPATH.indexOf("\\") + 2);
String user = request.getParameter("username");
logger.info("ApplicationConstants.ROOTPATH" + ApplicationConstants.ROOTPATH);
logger.info("username" + user);
try
{
for (Part part : request.getParts())
{
logger.info("part = " + part.getName());
if (!part.getName().equalsIgnoreCase("username"))
{
try {
BufferedInputStream in = new BufferedInputStream(part.getInputStream());
String filename = getFilename(part);
boolean success = (new File(ApplicationConstants.ROOTPATH + user + "\\")).mkdir();
if (success) {
System.out.println("Directory: " + ApplicationConstants.ROOTPATH + user .trim()+ "\\" + " created");
}
else
{
System.out.println("not created");
}
FileOutputStream out = new FileOutputStream(ApplicationConstants.ROOTPATH + user + "\\" + filename);
byte[] data = new byte[1000];
int bytesRead = 0;
int offset = 0;
while (offset < part.getSize())
{
bytesRead = in.read(data);
if (bytesRead == -1)
{
break;
}
offset += bytesRead;
out.write(data);
}
in.close();
if (offset != part.getSize())
{
throw new IOException("Only read " + offset + " bytes; Expected " + part.getSize() + " bytes");
}
out.flush();
out.close();
}
catch (Exception e)
{
logger.info(e.getMessage());
}
}
else
{
BufferedReader reader = new BufferedReader(new InputStreamReader(part.getInputStream(), "UTF-8"));
StringBuilder value = new StringBuilder();
char[] buffer = new char[1024];
reader.read(buffer);
value.append(buffer);
user = value.toString().trim();
logger.info("user = " + value);
}
}
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (ServletException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
希望这有助于某人!!