단순 파일 다운로드
1630 단어 파일 다운로드
onDeclare : function() {
window.open(this.MftDeclHeadAction + this.delcareReplenishManifest+"&manifestId="+this.mftDeclHeadForm.getForm().findField("manifestId").getValue());
}
this.MftDeclHeadAction + this.delcareReplenishManifest 액션으로 액세스 경로 구성
action 레이어
public ActionForward sendReplenishDoc(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)throws Exception {
if (request.getParameter("manifestId") != null) {
String mftId = (String)request.getParameter("manifestId");
try {
StringBuffer documentBuffer = this.mftDeclManager.getReplenishDoc(mftId);
response.setContentType("application/x-download");
response.setHeader("content-disposition", "attachment;filename=" + java.net.URLEncoder.encode(mftId+".xml", "UTF-8"));
byte[] bytes = documentBuffer.toString().getBytes("UTF-8");
BufferedInputStream bis = new BufferedInputStream(new ByteArrayInputStream(bytes));
OutputStream out = new BufferedOutputStream(response.getOutputStream());
int i=-1;
while ((i = bis.read()) != -1) {
out.write(i);
}
out.close();
bis.close();
}catch(Exception e){
e.printStackTrace();
}
}
return mapping.findForward("");
}
documentBuffer는 다운로드할 파일 내용만 되돌려줍니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 파일 다운로드의 몇 가지 실현 방식을 상세히 설명하다Java 파일을 다운로드하는 방법은 다음과 같습니다. //파일을 온라인으로 열 수 있는 방법 이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.