溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中怎么實現(xiàn)文件上傳并讀取文件內(nèi)容

發(fā)布時間:2021-06-15 17:40:33 來源:億速云 閱讀:867 作者:Leah 欄目:編程語言

java中怎么實現(xiàn)文件上傳并讀取文件內(nèi)容,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1.下載文件,將文件保存到本地。(只試用excel);

2.對文件的標題進行檢驗;

3.獲取導入的批次(取一個表的一個值,加1);

4.循環(huán)獲取文件某一個行,某一列的值,set到對象中;

5.檢驗值的合法性;

6.循環(huán)保存到對象中。

7.用map將錯誤的信息和正確的信息,JSONObject.fromObject(map);

public String uploadFile() throws Exception {
logger.info("開始導入規(guī)則文件:" + fileInputFileName);
InputStream is = new FileInputStream(fileInput);
String uploadPath = ServletActionContext.getServletContext()
.getRealPath("/upload");
System.out.println(uploadPath);
File targetFile = new File(uploadPath, this.getFileInputFileName());
OutputStream os = new FileOutputStream(targetFile);
byte[] buffer = new byte[1024];
int length = 0;
while ((length = is.read(buffer)) > 0) {
os.write(buffer, 0, length);
}
is.close();
os.close();
Map<String, Object> map = personalKPIMonitorManualRuleService
.importRules(targetFile);
HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("text/html;charset=utf-8");
PrintWriter out = response.getWriter();
out.println(JSONObject.fromObject(map));
// if(flag==true){
// logger.info("規(guī)則文件導入成功:"+fileInputFileName);
// out.println("規(guī)則文件導入成功:"+fileInputFileName);
// }else{
// logger.info("規(guī)則文件導入失?。?quot;+fileInputFileName);
// out.println("規(guī)則文件導入失敗,詳見日志:"+fileInputFileName);
// }
out.flush();
out.close();
return null;
}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI