色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

java json上傳圖片

傅智翔2年前7瀏覽0評論

Java是一種面向?qū)ο缶幊陶Z言,它廣泛應(yīng)用于企業(yè)級應(yīng)用開發(fā)中。JSON是一種輕量級的數(shù)據(jù)交換格式,它也是現(xiàn)代應(yīng)用程序中非常常見的一種數(shù)據(jù)格式。在Java中,我們可以使用JSON來上傳圖片。

public class UploadImageServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//獲取上傳文件的路徑
String path = request.getServletContext().getRealPath("/upload");
File filePath = new File(path);
if (!filePath.exists()) {
filePath.mkdir();
}
//獲取上傳文件的參數(shù)
String fileName = request.getParameter("fileName");
//解析JSON數(shù)據(jù)
JSONObject jsonObject = JSONObject.fromObject(fileName);
String name = (String) jsonObject.get("name");
//獲取上傳的文件
Part filePart = request.getPart("file");
InputStream inputStream = filePart.getInputStream();
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
//循環(huán)讀取文件并將其寫入字節(jié)數(shù)組輸出流中
byte[] buffer = new byte[4096];
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}
//將字節(jié)數(shù)組輸出流轉(zhuǎn)換為字節(jié)數(shù)組
byte[] imageBytes = outputStream.toByteArray();
//將字節(jié)數(shù)組保存為圖片
FileOutputStream fos = new FileOutputStream(new File(filePath, name));
fos.write(imageBytes);
fos.close();
response.getWriter().write("上傳成功!");
}
}

這段代碼演示了如何使用JSON上傳圖片。在這段代碼中,我們首先獲取上傳文件的路徑,然后獲取上傳文件的參數(shù)并使用JSON解析數(shù)據(jù)。接著,我們獲取上傳的文件并將其讀入一個(gè)字節(jié)數(shù)組輸出流中。最后,我們將字節(jié)數(shù)組輸出流轉(zhuǎn)換為字節(jié)數(shù)組,并將其保存為圖片。