log4j 데이터베이스 삽입 및 HTML 생성(최종 버전)
조금 드러난 부분이 있을지도 모르니 앞의 두 문장을 보세요.
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
UserDao dao=new DaoImp();
List<Log4j> all=new ArrayList();
int pageCount = 4;//
int pages=dao.getPages(pageCount);
String webpagestr=createWebPage(pages);
for(int i=0;i<pages;i++){
all=dao.all(pageCount*i-i, pageCount);
creatHtml(request, all, i,webpagestr);
}
request.setAttribute("list", all);
return mapping.findForward("suce");
}
private String createWebPage(int pages) {
//
StringBuilder webpagestr = new StringBuilder();
final String pagelink="<a href=";
for(int n=0;n<pages;n++){
//
webpagestr.append(pagelink).append("log").append(n).append(".html>")
.append(n).append("</a>")
.append(" ");
}
String sss= webpagestr.toString();
return sss;
}
protected void creatHtml(HttpServletRequest request, List<Log4j> all,int pages,String webpagestr)
throws FileNotFoundException, IOException {
//------ HTML-------------------------------
String filePath = "";
filePath = request.getRealPath("/")+"template.html";
/******** begin ************/
final String beginForHtmlTag = "<###for###>";
final String endForHtmlTag = "</###for###>";
FileInputStream input=new FileInputStream(filePath);
int length=input.available();
byte[] b=new byte[length];
input.read(b); //
String result = new String(b);//
int beginIndex = result.indexOf(beginForHtmlTag);
int endIndex = result.indexOf(endForHtmlTag);
String begin = result.substring(0, beginIndex);
String end = result.substring(endIndex+endForHtmlTag.length());
String table=result.substring(beginIndex+beginForHtmlTag.length(), endIndex);//get table
/**
*
*/
StringBuilder content=new StringBuilder();
for(Log4j log4j:all){
String temp = table.replace("###username###",log4j.getUsername());
temp = temp.replace("###classs###",log4j.getClasss());
temp = temp.replace("###method###",log4j.getMethod());
temp = temp.replace("###leve###",log4j.getLogLevel());
temp = temp.replace("###mess###",log4j.getMessage());
temp = temp.replace("###titme###",log4j.getCreateTime());
content.append(temp);
}
result=begin+content+"<br />current pages:"+pages+"__"+webpagestr+end;
/******** end ************/
//
// Calendar calendar = Calendar.getInstance();
// String fileame = String.valueOf(calendar.getTimeInMillis()) +".html";
String fileame ="log"+pages+".html";
// html
fileame = request.getRealPath("/")+fileame;// html
//
FileOutputStream fileoutputstream = new FileOutputStream(fileame);
byte tag_bytes[] = result.getBytes();
fileoutputstream.write(tag_bytes);
fileoutputstream.close();
//---------------------------
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Spring에서 DAO가 순환 호출될 때 데이터가 실시간으로 업데이트되지 않는 해결 방법문제를 설명하기 전에 몇 가지 전제 사항을 설명하십시오. Spring의 구성 파일에서 다음과 같은 방식으로 데이터베이스 트랜잭션을 구성했다고 가정하십시오. 현재 UserDao 및 Security Service가 있습...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.