Tag: 上传

AngularJS:使用$ resource上传文件(解决scheme)

我正在使用AngularJS与RESTful web服务进行交互,使用$resource来抽象暴露的各种实体。 其中一些实体是图像,所以我需要能够使用$resource “object”的save操作在同一请求中发送二进制数据和文本字段。 我怎样才能使用AngularJS的$resource服务发送数据,并在一个POST请求上传图像到一个平静的web服务?

Summernote图片上传

编辑Summernote有问题。 我想上传图片到服务器上的目录。 我有一些脚本: <script type="text/javascript"> $(function () { $(\'.summernote\').summernote({ height: 200 }); $(\'.summernote\').summernote({ height:300, onImageUpload: function(files, editor, welEditable) { sendFile(files[0],editor,welEditable); } }); }); </script> <script type="text/javascript"> function sendFile(file, editor, welEditable) { data = new FormData(); data.append("file", file); url = "http://localhost/spichlerz/uploads"; $.ajax({ data: data, type: "POST", url: url, cache: false, contentType: false, processData: false, success: function […]

使用okHttp上传图片

我想要使​​用okhttp上传图片,但我无法find后期Image.What MultipartBuilder,而不是这个。 这是我的代码 public static JSONObject uploadImage(File file) { try { final MediaType MEDIA_TYPE_PNG = MediaType.parse("image/png"); RequestBody req = new MultipartBuilder().setType(MultipartBody.FORM).addFormDataPart("userid", "8457851245") .addFormDataPart("userfile","profile.png", RequestBody.create(MEDIA_TYPE_PNG, file)).build(); Request request = new Request.Builder() .url("url") .post(req) .build(); OkHttpClient client = new OkHttpClient(); Response response = client.newCall(request).execute(); Log.d("response", "uploadImage:"+response.body().string()); return new JSONObject(response.body().string()); } catch (UnknownHostException | UnsupportedEncodingException e) { Log.e(TAG, […]

使用OkHttp在多部分上传一个大文件

在Android中使用OKhttp在多部分上传单个大文件(更具体地说是s3)有什么select?

在Codeigniter中上传多个文件

我想用单个元素上传多个文件。 所以我尝试这个例子。 使用CodeIgniter 2.0多个file upload(数组) 这是我的forms <form enctype="multipart/form-data" class="jNice" accept-charset="utf-8" method="post" action="http://xxxx.dev/admin/add_estates"> <fieldset> <label>Title * : </label> <input type="text" class="text-long" value="" name="title"> <label>Description : </label> <textarea class="mceEditor" rows="10" cols="40" name="description"></textarea> <label>Image : </label> <input type="file" multiple="" name="images[]"> <button class="button-submit" type="submit" name="save" id="">Save</button> </fieldset> </form> 这是我的控制器 public function add_estates() { $data['page_title'] = "&copy; IDEAL – Administrator […]

如何将file upload到SharePoint文档库?

如何以编程方式将file upload到SharePoint文档库? 我目前正在使用C#的Windows应用程序,将文档添加到文档库列表。

在ASP.net中上传文件,而不使用FileUpload服务器控件

我怎样才能得到一个ASP.net的网页forms(V3.5)发布文件使用普通的旧<input type="file" /> ? 我对使用ASP.net FileUpload服务器控件不感兴趣。 感谢您的build议。

如何解决这个java.lang.NoClassDefFoundError:org / apache / commons / io / output / DeferredFileOutputStream?

我正在使用下面的代码上传文件到tomcat5.5,它给了我以下例外 java.lang.NoClassDefFoundError: org/apache/commons/io/output/DeferredFileOutputStream 你能帮我找出答案吗? import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileItemFactory; import org.apache.commons.fileupload.FileUploadException; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; /** * Servlet implementation class FileUploadServlet */ public class FileUploadServlet extends HttpServlet { private static final long serialVersionUID = 1L; /** * @see HttpServlet#HttpServlet() */ […]

PHP – 上传utf-8文件名

我是越南人,我想上传一个utf-8文件名 Tên Tệp Tiếng Việt.JPG 这是我的代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>utf-8</title> </head> <body> <?php if(isset($_POST["submit"])) { if($_FILES["upload"]["error"] > 0 ) echo "FILE ERROR!"; else { $base_dir = "D:/"; $fn = $_FILES["upload"]["name"]; $fn2 = $base_dir.$fn; move_uploaded_file($_FILES["upload"]["tmp_name"],$fn2); } } ?> <form action="" method="post" enctype="multipart/form-data" name="form1" […]

在PHP中上传最大大小?

是否有可能使用PHP上传〜100 MB的文件? 如果是这样,configuration文件( php.ini )中需要做什么修改? 斯里兰卡