java 프론트 데스크 톱 백 엔 드 조건 내 보 내기 excel 및 내 보 내기 excel 유 니 버 설 도구 클래스
프론트 데스크 톱 에서 엑셀 표를 내 보 내 려 면 boottstrap table 의 tableExport. js 플러그 인 으로 내 보 내 려 고 하지만 현재 페이지 의 데이터 만 내 보 낼 수 있 습 니 다. so 는 배경 으로 내 보 내기 (슬 픈 재촉) 로 바 뀌 었 습 니 다.
내 보 내기 단추:
JavaScript 코드:
function supplierOutIncheckExport(){
var url =inventoryObj.initStoreInventorycheckExportUrl;//
// form ID
exportForm = document.createElement("form");
exportForm.setAttribute('id','StorageInventoryVo')
exportForm.setAttribute('name','StorageInventoryVo');
exportForm.setAttribute("action", url);
exportForm.setAttribute("contentType", 'application/x-xls');
exportForm.setAttribute("hidden", true);
exportForm.setAttribute("method", "post");
// input , form
var userId = document.createElement("input");
userId.type = "text";
userId.name = "staffId";
userId.value = currentUser.userId;
exportForm.appendChild(userId);
// input , form
var fileName = document.createElement("input");
fileName.type = "text";
fileName.name = "fileName";
fileName.value = " ( ) .xls";
exportForm.appendChild(fileName);
//
document.body.appendChild(exportForm);
exportForm.submit();
}
자바 배경 코드:
/**
*
* @Author: ruanyanghui
* @Company: xxxx
* @Description:
* @date 2018/12/6 14:35
*/
@PostMapping("/storageexport")
public void getstorageexport(StorageInventoryVo vo, HttpServletResponse response) {
vo = vo.getParams();
String[] headArray = {" ", " ", " "," ", " ", " ", " ",
" (¥)", " ", " ", " ", " (¥)"};
List list = inventoryService.findStorageInventoryExport(vo.getStaffId(), vo.getGoodsName(), vo.getGoodsNo(), vo.isLowerThan(), vo.getSupplierName());
List
maven 의존 도입:
org.apache.poi
poi
3.9
org.apache.poi
poi-ooxml
3.9
Excel 도구 클래스 내 보 내기:
이 도구 종류 도 제 가 인터넷 에서 찾 은 것 입 니 다. 그러나 그 안의 방법 이 시대 에 뒤떨어 진 문제, 그리고 파일 이름 의 난 코드 를 내 보 내 는 문제 도 최적화 되 었 습 니 다. HXSSFWorkbook 은 여러 데이터 와 의 SXSSFWorkbook 을 처리 할 수 있 도록 교체 되 었 습 니 다. 안심 하고 사용 할 수 있 습 니 다.
package com.xxx.utils;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.*;
import java.io.*;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.servlet.http.HttpServletResponse;
/**
* @Author: ruanyanghui
* @Company: xxx
* @Description: Excel
* @date 2018/12/7 17:49
*/
public class ExeclUtil {
/**
* @param title
* @param headers
* @param dataset
*/
public static InputStream exportExcel(String title, String[] headers, List
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.