所以我现在搜索了相当多的示例代码,但我发现的唯一一个是服务器端的示例,意思是接收部分。
我想创建一个使用restlet上传文件的应用程序,内容类型为:multipart/form-data
。所以我需要发送部分
如何为此创建表单?
我尝试的是以下内容,但它不起作用:
public void UploadFile(File f){
Form fileForm = new Form();
fileForm.add(Disposition.NAME_FILENAME, "test.jpg");
Disposition disposition = new Disposition(Disposition.TYPE_INLINE, fileForm);
FileRepresentation entity = new FileRepresentation(f, MediaType.IMAGE_ALL);
entity.setDisposition(disposition);
FormData fd = new FormData("photo", entity);
FormDataSet fds = new FormDataSet();
fds.setMultipart(true);
fds.setMediaType(MediaType.MULTIPART_FORM_DATA);
fds.getEntries().add(fd);
String url = "http://localhost/uploadFile";
Optional<JsonRepresentation> opJrep = m_RestClient.postJson(url,fds,MediaType.MULTIPART_FORM_DATA, Optional.empty());
}
使用以下方法发布表单并接收JSON表示(postJson表示post,get json back)
public Optional<JsonRepresentation> postJson(String url, Object sendObject,MediaType mediaType,Optional<Collection<? extends Header>> headers){
//build resource
ClientResource resource = new ClientResource(url);
//build request with headers
Request request = new Request(Method.POST,url);
headers.ifPresent(col->{
request.getHeaders().addAll(col);
});
//set request
resource.setRequest(request);
//get response
resource.post(sendObject,mediaType);
Representation responseEntity = resource.getResponseEntity();
System.out.println(responseEntity.toString());
try {
//get json representation
JsonRepresentation json = new JsonRepresentation(responseEntity);
return Optional.of(json);
} catch (Exception e) {
}
return Optional.empty();
}
当一切正常时,接收服务器应该返回一个JSON字符串。
端点实际上不是我的本地主机,而是带有SendPhoto方法的Telegram Bot。在那里,您可以使用multipart / form-data
将文件作为图像发布我该怎么办?如何使用restlet作为multipart / form-data上传文件(在我的情况下是图像)?
答案 0 :(得分:3)
我使用 FileRepresentation entity = new FileRepresentation(file, mediaType); //create the fileRepresentation
FormDataSet fds = new FormDataSet(); //create the FormDataSet
FormData fd = new FormData(key, entity); //create the Formdata using a key and a value (file)
fds.getEntries().add(fd); //add the form data to the set
fds.setMultipart(true); //set the multipart value to true
String url = "http://localhost/uploadPhoto";
Optional<JsonRepresentation> opJrep = m_RestClient.postJson(url,fds,MediaType.MULTIPART_FORM_DATA, Optional.empty());
进行了一些尝试和错误编程并获得了结果。
要使用restlet上传文件(在本例中为图片),您必须执行以下操作:
postJson
此示例使用问题中描述的相同var number = x;
alert (Math.ceil(number / 10) * 10);
方法。