我正在使用 REST 服务处理文件传输过程。我在 Java 中使用 REST Jersey API。我没有使用任何 html 帖子或通过 ajax 帖子执行此过程(即我没有创建任何 Web 应用程序)。我刚刚创建了一个 REST Http Server,我正在使用一个 REST Client 来处理文件传输操作。Web 资源方法位于单独的类文件中。
测试REST.java
@POST
@Path("/upload")
@Consumes(MediaType.MULTIPART_FORM_DATA)
public Response uploadFile(
@FormDataParam("file") InputStream uploadedInputStream,
@FormDataParam("file") FormDataContentDisposition fileDetail) {
String uploadedFileLocation = "d://uploaded/" + fileDetail.getFileName();
// save it
writeToFile(uploadedInputStream, uploadedFileLocation);
String output = "File uploaded to : " + uploadedFileLocation;
return Response.status(200).entity(output).build();
}
RESTClient.java
try {
final ClientConfig config = new DefaultClientConfig();
final Client client = Client.create(config);
final WebResource resource = client.resource(REST_URI);
File f = new File("D:/test/Doc1.rar");
FileInputStream fs = new FileInputStream(f);
byte[] con= new byte[(int)f.length()];
fs.read(con);
FormDataMultiPart form = new FormDataMultiPart();
FormDataBodyPart fdp = new FormDataBodyPart("content", MediaType.MULTIPART_FORM_DATA);
form.bodyPart(fdp);
final String response = resource.path("test").path("transfer").type(MediaType.MULTIPART_FORM_DATA).post(String.class, form);
} catch (Exception ex) {
System.out.println("Exception Occcured");
ex.printStackTrace();
}
但是,在启动 REST 服务器本身时,我得到了一个异常,就像在 testREST.java 中不是一个有效的资源方法......我的代码错了。