log4j 데이터베이스 삽입 및 HTML 생성(둘)

3402 단어 DAOhtmllog4jjsp
뒤에 중요한 게 있어요. 바로 검색해야 하는LIST예요.JSP 페이지에 HTML이 생성되었습니다.
필요한 것은 입출력 스트림 쓰기입니다.
데이터를 표시하려면 다음과 같이 하십시오.

	public ActionForward list(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		UserDao dao=new DaoImp();
		int pageCount = 4;//    
		// pages
		int pages = dao.getPages(pageCount);
		List<Log4j> all=new ArrayList();
		
		for(int i =0;i<pages;i++){
		all=dao.listall(pageCount,pageCount*i-i,pageCount);
		creatHtml(request, all, i);
		}
	
		request.setAttribute("list", all);

		return mapping.findForward("suce");
	}


HTML 생성 방법을 살펴보겠습니다.

protected void creatHtml(HttpServletRequest request, List<Log4j> all,int pages)
			throws FileNotFoundException, IOException {
		//------  HTML-------------------------------
			//    ,  
				 final String beginForHtmlTag = "<###for###>";
				 final String endForHtmlTag = "</###for###>";
				String filePath = "";
				filePath = request.getRealPath("/")+"template.html";//    		
				/******** begin ************/
				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);
				
//				String content = new String("");
				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 += temp;
					content.append(temp);
				}
				
				result = begin + content+"<br />all pages:"+pages + end;
				/******** end ************/
				     。            ,      ,    。
	
				//         
				Calendar calendar = Calendar.getInstance();
				String fileame = String.valueOf(calendar.getTimeInMillis()) +".html";
				
		//		String fileame ="a.html";
				
				fileame = request.getRealPath("/")+fileame;//   html      
				FileOutputStream fileoutputstream = new FileOutputStream(fileame);//       
				
				
				byte tag_bytes[] = result.getBytes();
				fileoutputstream.write(tag_bytes);
				fileoutputstream.close();
	}

HTML의 템플릿은 인터넷의 많은 자료와 같다.
여러분은 저에게 필요한 메모를 남겨 주실 수 있습니다.

좋은 웹페이지 즐겨찾기