日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

网络服务器有保存文件,将收到的图片保存到网络服务器上的文件夹

發布時間:2023/12/10 编程问答 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 网络服务器有保存文件,将收到的图片保存到网络服务器上的文件夹 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

對于類似的功能(從裝載Android的照片與Servlet),這里的Android客戶端的代碼,我使用(在這里發帖而稍加編輯):

URI uri = URI.create(// path to file);

MultipartEntity entity = new MultipartEntity(HttpMultipartMode.STRICT);

// several key-value pairs to describe the data, one should be filename

entity.addPart("key", new StringBody("value"));

File inputFile = new File(photoUri.getPath());

// optionally reduces the size of the photo (you can replace with FileInputStream)

InputStream photoInput = getSizedPhotoInputStream(photoUri);

entity.addPart("CONTENT", new InputStreamBody(photoInput, inputFile.getName()));

HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(uri);

HttpContext localContext = new BasicHttpContext();

httppost.setEntity(entity);

HttpResponse response = httpclient.execute(httppost, localContext);

和這里的代碼來接受它。首先,一定要標記您的servlet類為支持多消息:

@MultipartConfig

public class PhotosServlet extends HttpServlet

然后身體的相關部分:

HttpEntity entity = new InputStreamEntity(request.getPart("CONTENT").getInputStream(), contentLength);

InputStream inputFile = entity.getContent();

// string extension comes from one of the key-value pairs

String extension = request.getParameter(//filename key);

// first write file to a file

File images = new File(getServletContext().getRealPath("images"));

File filePath = File.createTempFile("user", extension, images);

writeInputDataToOutputFile(inputFile, filePath); // just copy input stream to output stream

String path = filePath.getPath();

logger.debug("Wrote new file, filename: " + path);

希望它能幫助。

總結

以上是生活随笔為你收集整理的网络服务器有保存文件,将收到的图片保存到网络服务器上的文件夹的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。