⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commoncode.java

📁 jsp网站开发四“酷”全书原码
💻 JAVA
字号:
package com.publish.shop.util.javabeans;import java.util.ArrayList;import java.util.Date;import java.util.Calendar;import java.text.SimpleDateFormat;import java.sql.Connection;import org.apache.struts.util.LabelValueBean;import com.publish.shop.util.dao.CommonCodeDAO;public class CommonCode{  CommonCodeDAO dao = new CommonCodeDAO();  public String getCommonValue(String codeType,String codeName){    return dao.getCommonCodeDescription(codeType,codeName);  }  public ArrayList getCommonCodeLabel(String codeType){    ArrayList list = dao.getCommonCodeLabel(codeType);    return list;  }  public ArrayList getCommonCodeLabelAddAll(String codeType){    ArrayList list = dao.getCommonCodeLabel(codeType);    list.add(0,new LabelValueBean(Utility.getMessage("label.all"),""));    return list;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -