요청을 통해 excel 파일을 가져와 처리합니다
1820 단어 개인
// url excel
InputStream in = null;
HttpGet httpGet = new HttpGet(fileUrl);
try {
HttpResponse httpResponse = client.execute(httpGet);
HttpEntity entity = httpResponse.getEntity();
in = entity.getContent();
} catch (IOException e) {
e.printStackTrace();
}
// excel
String fileName = "test.xlsx";
File file = new File(fileName);
// excel
XSSFWorkbook wbOut = new XSSFWorkbook();
XSSFSheet sheetOut = wbOut.createSheet();
XSSFRow rowOut = null;
XSSFCell cellOut = null;
// excel
Workbook wbRead = null;
try {
wbRead = new XSSFWorkbook(in);
} catch (IOException e) {
e.printStackTrace();
}
Sheet sheet0 = wbRead.getSheetAt(0);
Row row = null;
Cell cell = null;
String cellString = null;
Double d = null;
int count = 0;
Boolean flag = false;
XSSFCellStyle cellStyle = (XSSFCellStyle) wbOut.createCellStyle();
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
XSSFColor myColor = new XSSFColor(Color.ORANGE);
cellStyle.setFillForegroundColor(myColor);
// excel , , excel
for (int i = 0; i < sheet0.getLastRowNum(); i++) {
flag = false;
row = sheet0.getRow(i);
rowOut = sheetOut.createRow(i);
for(int j=0;j
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
빈틈 복구, Openssh 보안 빈틈(CVE-2017-15906) 및 Openssh 사용자 매거 빈틈(CVE-2018-15919) 내망 Openssh 업그레이드 과정을 기록합니다.작업 중에 우연히 제 서버의 두 가지 빈틈을 발견했습니다. Openssh 보안 빈틈(CVE-2017-15906)과 Openssh 사용자 매거진 빈틈(CVE-2018-15919) 인터넷 조회 자료를 보면 제 cento...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.