我正在尝试通过angularjs使用多部分请求上传文件,并在我的Rest服务上接收内容。在过去4天尝试了几次帮助后,我在这里提出了这个问题,并将自己弄到了最高水平。如果你可以微调我的方法或提出另一种方法,我将不胜感激(我愿意接受任何可能有效的建议,因为我现在没有想法)。
只是一个指针,我尝试编写一个servlet来读取通过angularjs发送的多部分请求,我正确地得到了部分。但是我仍然把角度代码放在这里作为参考,因为我在角度和休息方面都不是更好。
以下是文件上传的html摘录:
<div>
<input type="file" data-file-upload multiple/>
<ul>
<li data-ng-repeat="file in files">{{file.name}}</li>
</ul>
</div>
以下是angularjs指令代码提取:
.directive('fileUpload', function () {
return {
scope: true, //create a new scope
link: function (scope, el, attrs) {
el.bind('change', function (event) {
var files = event.target.files;
//iterate files since 'multiple' may be specified on the element
for (var i = 0;i<files.length;i++) {
//emit event upward
scope.$emit("fileSelected", { file: files[i] });
}
});
}
};
})
以下是angularjs控制器代码提取
//a simple model to bind to and send to the server
$scope.model = {
name: "test",
comments: "TC"
};
//an array of files selected
$scope.files = [];
//listen for the file selected event
$scope.$on("fileSelected", function (event, args) {
$scope.$apply(function () {
//add the file object to the scope's files collection
$scope.files.push(args.file);
});
});
//the save method
$scope.save = function() {
$http({
method: 'POST',
url: "/services/testApp/settings/api/vsp/save",
headers: { 'Content-Type': undefined },
transformRequest: function (data) {
var formData = new FormData();
formData.append("model", angular.toJson(data.model));
for (var i = 0; i < data.files.length; i++) {
formData.append("file" , data.files[i]);
}
return formData;
},
data: { model: $scope.model, files: $scope.files }
}).
success(function (data, status, headers, config) {
alert("success!");
}).
error(function (data, status, headers, config) {
alert("failed!");
});
};
这是我的休息服务代码:
@Path("/vsp")
public class SampleService{
@Path("/save")
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
public void saveProfile(@FormParam("model") String theXml,
@FormParam("file") List<File> files) throws ServletException, IOException {
final String response = "theXML: " + theXml + " and " + files.size() + " file(s) received";
System.out.println(response);
}
}
以下是回复: theXML:{“name”:“test”,“comments”:“TC”}和收到的1个文件
问题是文件的内容是在路径中,我无法获取输入流来读取文件。我甚至尝试过使用
new ByteArrayInputStream(files.get(0).getPath().getBytes())
如果内容是文本(如txt或csv),则可以使用,但如果内容是xls等任何其他文件,则检索到的内容已损坏且无法使用。也尝试使用 Jeresy api,但结果相同。我错过了什么明显的东西?任何帮助表示赞赏。
答案 0 :(得分:1)
我遇到了一些链接,但没有一个对我有用。最后,我必须编写一个servlet来读取multipart请求,并将文件和请求参数添加为请求属性。设置请求属性后,我将请求转发给我的Rest服务。
仅为记录,如果读取多部分请求一次以提取部件,则请求将不包含转发的servlet中的部件。所以我必须在转发之前将它们设置为请求属性。
这是servlet代码:
public class UploadServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// process only if its multipart content
RequestContext reqContext = new ServletRequestContext(request);
if (ServletFileUpload.isMultipartContent(reqContext)) {
try {
List<FileItem> multiparts = new ServletFileUpload(
new DiskFileItemFactory()).parseRequest(request);
ArrayList<FileItem> fileList = new ArrayList<FileItem>();
request.setAttribute("files", fileList);
for (FileItem item : multiparts) {
if (!item.isFormField()) {
fileList.add(item);
} else {
request.setAttribute(item.getFieldName(),
item.getString());
}
}
request.setAttribute("message", "success");
} catch (Exception ex) {
request.setAttribute("message", "fail"
+ ex);
}
} else {
request.setAttribute("message",
"notMultipart");
}
System.out.println(request.getRequestURI().substring(request.getRequestURI().indexOf("upload")+6));
String forwardUri = "/api" + request.getRequestURI().substring(request.getRequestURI().indexOf("upload")+6);
request.getRequestDispatcher(forwardUri)
.forward(request, response);
}
}
以/ 上传 /&lt; rest api path&gt;开头的任何请求将由servlet接收,一旦设置了属性,它们将被转发到/ api /&lt; rest api path&gt ;.
在其余的api中,我使用以下代码检索参数。
@Path("/vsp")
public class SampleService{
@Path("/save")
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
public void saveProfile(@Context HttpServletRequest request,
@Context HttpServletResponse response) throws Exception {
// getting the uploaded files
ArrayList<FileItem> items = (ArrayList<FileItem>)request.getAttribute("files");
FileItem item = items.get(0);
String name = new File(item.getName()).getName();
item.write( new File("C:" + File.separator + name));
// getting the data
String modelString = (String)request.getAttribute("model");
// Getting JSON from model string
JSONObject obj = JSONObject.parse(modelString);
String responseString = "model.name: " + obj.get("name") + " and " + items.size() + " file(s) received";
System.out.println(responseString);
}
}