IndexNews.java
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:6k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. package com.chinacannel.xlchemical.Tag;
  2. import java.util.*;
  3. import javax.servlet.jsp.*;
  4. import javax.servlet.jsp.tagext.*;
  5. import com.chinacannel.entity.*;
  6. import com.chinacannel.xlchemical.service.*;
  7. import java.text.SimpleDateFormat;
  8. public class IndexNews extends TagSupport  {
  9.     private Long menuID = new Long(0);
  10.     private String webPath = "";
  11.     public int doStartTag() throws JspException {
  12.         try {
  13.             MenuService ms = new MenuService();
  14.             InformationService is = new InformationService();
  15.             Information imageInfo = null;
  16.             Menu menu = null;
  17.             ms.beginTran();
  18.             menu = ms.GetMenuById(this.getMenuID());
  19.             String Language = "CN";
  20.             String more = "";
  21.             if(menu != null){
  22.                 imageInfo = is.GetIndexImgInformationByMenu(menu);
  23.                 List list = is.GetIndexInformation(menu);
  24.                 ms.commit();
  25.                 String title = "";
  26.                 String time = "";
  27.                 String summary = "";
  28.                 StringBuilder sb = new StringBuilder();
  29.                 sb.append("<table width="287" border="0" cellspacing="0" cellpadding="0">" + "n");
  30.                 sb.append("<tr><td><table width="100%" border="0" cellspacing="0" cellpadding="0">" + "n");
  31.                 sb.append("<tr><td width="4%">&nbsp;</td>" + "n");
  32.                 sb.append("<td width="96%"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>" + "n");
  33.                 sb.append("<td width="84%" class="Title"><img src="images/Index_PD_Title.jpg" width="11" height="9"> " + menu.getMen_Name() + "</td>" + "n");
  34.                 if (menu.getMen_Language().equals("CN")) {
  35.                     more = "更多";
  36.                 } else {
  37.                     more = "more";
  38.                 }
  39.                 sb.append("<td width="16%"><a href="" + this.getWebPath() + "/Index.do?todo=OpenIndexMenu&fMenuID=" + menu.getMen_Superior() + "&cMenuID=" + menu.getMen_ID() + "">" + more + "&gt;&gt;</a></td></tr></table></td></tr>" + "n");
  40.                 sb.append("<tr><td height="4" bgcolor="FE0000"></td><td height="4" bgcolor="E9E9E9"></td></tr></table></td></tr>" + "n");
  41.                 sb.append("<tr><td height="133" valign="top" style="padding-top:;">" + "n");
  42.                 sb.append("<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="E9E9E9">" + "n");
  43.                 if(imageInfo != null){
  44.                     sb.append("<tr><td width="29%" style="padding:5px;"><img src="" + imageInfo.getImage().getPath() + "/" + imageInfo.getImage().getReallyname() + "" width="79" height="62" alt="" /></td>" + "n");
  45.                 }else{
  46.                     sb.append("<tr><td width="29%" style="padding:5px;"><img src="" width="79" height="62" alt="" /></td>" + "n");
  47.                 }
  48.                 sb.append("<td width="71%"><table width="100%" border="0" cellspacing="0" cellpadding="0">" + "n");
  49.                 if (imageInfo != null) {
  50.                     if (imageInfo.getInf_Title().length() > 6) {
  51.                         title = imageInfo.getInf_Title().substring(0, 6);
  52.                     } else {
  53.                         title = imageInfo.getInf_Title();
  54.                     }
  55.                     title = "<a href='" + this.getWebPath() +
  56.                             "/Index.do?todo=OpenInfo&infID=" +
  57.                             imageInfo.getInf_ID() + "&type=" +
  58.                             imageInfo.getMenu().getMen_Type() + "&fMenuID=" +
  59.                             imageInfo.getMenu().getMen_Superior() + "'>" + title +
  60.                             "</a>";
  61.                 }
  62.                 sb.append("<tr><td width="50%"><strong>" + title + "</strong></td>" + "n");
  63.                 if (imageInfo != null) {
  64.                     time = new SimpleDateFormat("yyyy-MM-dd").format(imageInfo.
  65.                             getInf_Time());
  66.                 }
  67.                 sb.append("<td width="50%" class="Date">[" + time +
  68.                           "]</td></tr>" + "n");
  69.                 if (imageInfo != null) {
  70.                     if (imageInfo.getInf_Summary().length() > 20) {
  71.                         summary = imageInfo.getInf_Summary().substring(0, 20);
  72.                     } else {
  73.                         summary = imageInfo.getInf_Summary();
  74.                     }
  75.                 }
  76.                 sb.append("<tr><td colspan="2">" + summary + "...</td></tr></table></td></tr></table>" + "n");
  77.                 sb.append("<table width="100%" border="0" cellspacing="0" cellpadding="0">" + "n");
  78.                 for (int i = 0; i < list.size(); i++) {
  79.                     Information inf = (Information) list.get(i);
  80.                     sb.append("<tr><td width="6%"><img src="images/Ft.jpg" width="8" height="9" alt="" /></td>" + "n");
  81.                     String s = "";
  82.                     if (inf.getInf_Title().length() > 20) {
  83.                         s = inf.getInf_Title().substring(0, 20) + "...";
  84.                     } else {
  85.                         s = inf.getInf_Title();
  86.                     }
  87.                     sb.append("<td width="94%"><a href="" + this.getWebPath() +
  88.                               "/Index.do?todo=OpenInfo&infID=" + inf.getInf_ID() +
  89.                               "&type=" + inf.getMenu().getMen_Type() +
  90.                               "&fMenuID=" + inf.getMenu().getMen_Superior() +
  91.                               "" class="News_Link">" + s + "</a></td></tr>" +
  92.                               "n");
  93.                 }
  94.                 sb.append("</table><table width="100%" border="0" cellspacing="0" cellpadding="0">" + "n");
  95.                 sb.append("<tr><td height="2" bgcolor="E4E4E4"></td></tr></table></td></td></table>" + "n");
  96.                 JspWriter out = pageContext.getOut();
  97.                 out.print(sb.toString());
  98.             }else{
  99.                 JspWriter out = pageContext.getOut();
  100.                 out.print("");
  101.             }
  102.         } catch (Exception e) {
  103.             throw new JspException(e);
  104.         }
  105.         return 0;
  106.     }
  107.     public String getWebPath() {
  108.         return webPath;
  109.     }
  110.     public Long getMenuID() {
  111.         return menuID;
  112.     }
  113.     public void setWebPath(String webPath) {
  114.         this.webPath = webPath;
  115.     }
  116.     public void setMenuID(Long menuID) {
  117.         this.menuID = menuID;
  118.     }
  119. }