📄 fontdao.java
字号:
closeStatement(stmt); closeConnection(dbConnection); } } public static int getRowCountBySql(String sql) throws SysException { Connection dbConnection = null; Statement stmt = null; ResultSet rs = null; int rowCount = 0; try { dbConnection = getDBConnection(); stmt = dbConnection.createStatement(); rs = stmt.executeQuery(sql); if ( rs.next() ) { rowCount = rs.getInt(1); }else{ Debug.println(sql + "\n" + "ERROR in get row count!!"); throw new SysException("ERROR in get row count!!"); } return rowCount; } catch(SQLException e) { Debug.println(sql + "\n" + "SQLException while execute getRowCountBySql mothod :\n" + e); throw new SysException("SQLException while execute getRowCountBySql mothod :\n" + e); } finally { closeResultSet(rs); closeStatement(stmt); closeConnection(dbConnection); } } public static Collection queryAll() throws SysException { String sql = "SELECT ROWID, USER_MDN, UA_TYPE, INPUT_CH, FONT_TYPE FROM WAP_FONT"; return queryBySql(sql); } public static Collection queryAll(int beginRow, int endRow) throws SysException { String sql = "SELECT ROWID, USER_MDN, UA_TYPE, INPUT_CH, FONT_TYPE FROM WAP_FONT"; return queryBySql(sql, beginRow, endRow); } public static int getRowCountOfAll() throws SysException { String sql = "SELECT COUNT(*) FROM WAP_FONT"; return getRowCountBySql(sql); } public static FontModel toModel(Hashtable element) { FontModel model = new FontModel(); model.setUserMdn((String)element.get("userMdn")); model.setUaType((String)element.get("uaType")); model.setInputCh((String)element.get("inputCh")); model.setFontType((String)element.get("fontType")); return model; } public static Collection allToModel(Collection coll) { Collection value = new ArrayList(); Iterator it = coll.iterator(); while (it.hasNext()) { value.add(toModel((Hashtable)it.next())); } return value; } public static int getSequenceNextValue() throws SysException { String sql = "SELECT * FROM WAP_SEQUENCE WHERE TABLE_NAME = 'WAP_FONT'"; Connection dbConnection = null; Statement stmt = null; ResultSet rs = null; int lastValue = 1; try { dbConnection = getDBConnection(); stmt = dbConnection.createStatement(); rs = stmt.executeQuery(sql); if ( rs.next() ) { lastValue = rs.getInt("LAST_VALUE"); int minValue = rs.getInt("MIN_VALUE"); int maxValue = rs.getInt("MAX_VALUE"); int incrementBy = rs.getInt("INCREMENT_BY"); int cycle = rs.getInt("CYCLE"); if (lastValue < 0) { Debug.println("id last value can't smaller than 0"); throw new SysException("id last value can't smaller than 0"); } if (minValue < 0) { Debug.println("id min value can't smaller than 0"); throw new SysException("id min value can't smaller than 0"); } if (maxValue < 0) { Debug.println("id max value can't smaller than 0"); throw new SysException("id max value can't smaller than 0"); } if (incrementBy < 1) { Debug.println("id increment value can't smaller than 1"); throw new SysException("id increment value can't smaller than 1"); } if (cycle != 0 && cycle != 1) { Debug.println("id cycle value error, it can be 0 or 1 only"); throw new SysException("id cycle value error, it can be 0 or 1 only"); } if (lastValue < minValue) { Debug.println("id value is " + lastValue + ": \n" + "id value can't smaller than min value"); throw new SysException("id value can't smaller than min value"); } if (minValue >= maxValue) { Debug.println("id max value must bigger than min value"); throw new SysException("id max value must bigger than min value"); } if (lastValue > maxValue) { if (cycle == 0) { Debug.println("id value is " + lastValue + ": \n" + "id value exceeds max value"); throw new SysException("id value exceeds max value"); } else { lastValue = minValue; } } sql = "UPDATE WAP_SEQUENCE SET LAST_VALUE = " + (lastValue + incrementBy) + " WHERE TABLE_NAME = 'WAP_FONT'"; stmt.executeUpdate(sql); }else{ sql = "INSERT INTO WAP_SEQUENCE (TABLE_NAME, LAST_VALUE, MIN_VALUE, MAX_VALUE, INCREMENT_BY, CYCLE) VALUES ('WAP_FONT', 2, 1, 999999999, 1, 1)"; stmt.executeUpdate(sql); } return lastValue; } catch(SQLException e) { Debug.println(sql + "\n" + "SQLException while execute getRowCountBySql method :\n" + e); throw new SysException("SQLException while execute getRowCountBySql method :\n" + e); } finally { closeResultSet(rs); closeStatement(stmt); closeConnection(dbConnection); } } protected static String getInsertSQL(FontModel model) { String sql = ""; if (Database.dbType == DBType.ORACLE) { sql = "INSERT INTO WAP_FONT (USER_MDN, UA_TYPE, INPUT_CH, FONT_TYPE) VALUES ('" + Function.writeDBEncode(model.getUserMdn()) + "', '" + Function.writeDBEncode(model.getUaType()) + "', '" + Function.writeDBEncode(model.getInputCh()) + "', '" + Function.writeDBEncode(model.getFontType()) + "')"; } else if (Database.dbType == DBType.SQLSERVER) { sql = "INSERT INTO WAP_FONT (USER_MDN, UA_TYPE, INPUT_CH, FONT_TYPE) VALUES ('" + Function.writeDBEncode(model.getUserMdn()) + "', '" + Function.writeDBEncode(model.getUaType()) + "', '" + Function.writeDBEncode(model.getInputCh()) + "', '" + Function.writeDBEncode(model.getFontType()) + "')"; } else if (Database.dbType == DBType.MYSQL) { sql = "INSERT INTO WAP_FONT (USER_MDN, UA_TYPE, INPUT_CH, FONT_TYPE) VALUES ('" + Function.writeDBEncode(model.getUserMdn()) + "', '" + Function.writeDBEncode(model.getUaType()) + "', '" + Function.writeDBEncode(model.getInputCh()) + "', '" + Function.writeDBEncode(model.getFontType()) + "')"; } return sql; } protected static String getUpdateSQL(String rowid, FontModel model) { String sql = "UPDATE WAP_FONT SET USER_MDN = '" + Function.writeDBEncode(model.getUserMdn()) + "', UA_TYPE = '" + Function.writeDBEncode(model.getUaType()) + "', INPUT_CH = '" + Function.writeDBEncode(model.getInputCh()) + "', FONT_TYPE = '" + Function.writeDBEncode(model.getFontType()) + "'" + " WHERE ROWID = '" + rowid + "'"; return sql; } protected static String getDeleteSQL(String rowid) { String sql = "DELETE FROM WAP_FONT" + " WHERE ROWID = '" + rowid + "'"; return sql; } protected static String getDeleteSQL(String[] rowids) { String sql = "DELETE FROM WAP_FONT WHERE 1 = 2"; for ( int i = 0; i < rowids.length; i++ ) { sql += " OR (ROWID = '" + rowids[i] + "')"; } return sql; } protected static String getFindByPKSQL(String rowid) { String sql = "SELECT * FROM WAP_FONT" + " WHERE ROWID = '" + rowid + "'"; return sql; } protected static boolean isValidData(FontModel model) { return true; } private static Connection getDBConnection() throws SysException { return Database.getConnection(); } private static void closeConnection(Connection dbConnection) throws SysException { try { if (dbConnection != null && !dbConnection.isClosed()) { dbConnection.close(); dbConnection = null; } } catch (SQLException se) { //throw new SysException("SQL Exception while closing DB connection : \n" + se); } } private static void closeResultSet(ResultSet result) throws SysException { try { if (result != null) { result.close(); } } catch (SQLException se) { //throw new SysException("SQL Exception while closing Result Set : \n" + se); } } private static void closeStatement(Statement stmt) throws SysException { try { if (stmt != null) { stmt.close(); } } catch (SQLException se) { //throw new SysException("SQL Exception while closing Statement : \n" + se); } } public static void main(String[] args) throws Exception{ String action = ""; if (args.length == 1) { action = args[0]; } if (action == null || "".equals(action)) { } else if ("insert".equalsIgnoreCase(action)) { FontModel model=new FontModel(); model.setUserMdn("abc"); model.setUaType("abc"); model.setInputCh("abc"); model.setFontType("abc"); FontModel fontModel = FontBean.insert(model); }else if ("update".equalsIgnoreCase(action)){ FontModel fontModel = FontBean.findByPK("AAADZ1AAHAAAd4KAAA"); String userMdn = fontModel.getUserMdn(); String uaType = fontModel.getUaType(); String inputCh = fontModel.getInputCh(); String fontType = fontModel.getFontType(); fontModel.setUserMdn(userMdn); fontModel.setUaType(uaType); fontModel.setInputCh(inputCh); fontModel.setFontType(fontType); update("AAADZ1AAHAAAd4KAAA", fontModel); }else if ("delete".equalsIgnoreCase(action)){ String[] rowids = new String[3]; rowids[0] = "AAADZ1AAHAAAd4KAAA"; rowids[1] = "AAADZ1AAHAAAd4KAAB"; rowids[2] = "AAADZ1AAHAAAd4KAAC"; FontBean.delete(rowids); }else if ("findByPK".equalsIgnoreCase(action)){ FontModel fontModel = FontBean.findByPK("AAADZ1AAHAAAd4KAAA"); String userMdn = fontModel.getUserMdn(); String uaType = fontModel.getUaType(); String inputCh = fontModel.getInputCh(); String fontType = fontModel.getFontType(); System.out.println("userMdn = " + userMdn); System.out.println("uaType = " + uaType); System.out.println("inputCh = " + inputCh); System.out.println("fontType = " + fontType); }else if ("queryBySql".equalsIgnoreCase(action)){ Collection coll = FontBean.queryBySql("SELECT ROWID, USER_MDN, UA_TYPE, INPUT_CH, FONT_TYPE FROM WAP_FONT"); }else if ("getRowCountBySql".equalsIgnoreCase(action)){ int rowCount = FontBean.getRowCountBySql("SELECT COUNT(*) FROM WAP_FONT"); System.out.println("rowCount = " + rowCount); }else if ("queryAll".equalsIgnoreCase(action)){ Collection coll = FontBean.queryAll(); Iterator it = coll.iterator(); while ( it.hasNext() ) { Hashtable element = (Hashtable)it.next(); String rowid = (String)element.get("rowid"); String userMdn = (String)element.get("userMdn"); String uaType = (String)element.get("uaType"); String inputCh = (String)element.get("inputCh"); String fontType = (String)element.get("fontType"); System.out.print("rowid = " + rowid + ",\t"); System.out.print("userMdn = " + userMdn + ",\t"); System.out.print("uaType = " + uaType + ",\t"); System.out.print("inputCh = " + inputCh + ",\t"); System.out.print("fontType = " + fontType + "\n"); } }else if ("getRowCountOfAll".equalsIgnoreCase(action)){ int rowCount = FontBean.getRowCountOfAll(); System.out.println("rowCount = " + rowCount); }else if ("getSequenceNextValue".equalsIgnoreCase(action)){ int sequenceValue = FontBean.getSequenceNextValue(); System.out.println("sequenceValue = " + sequenceValue); } }}/*String userMdn = (model==null?"":model.getUserMdn());String uaType = (model==null?"":model.getUaType());String inputCh = (model==null?"":model.getInputCh());String fontType = (model==null?"":model.getFontType());String userMdn = PageUtil.parseStringField(request.getParameter("userMdn"), "userMdn", false, 19);String uaType = PageUtil.parseStringField(request.getParameter("uaType"), "uaType", false, 99);String inputCh = PageUtil.parseStringField(request.getParameter("inputCh"), "inputCh", false, 99);String fontType = PageUtil.parseStringField(request.getParameter("fontType"), "fontType", false, 99);String userMdn = PageUtil.parseStringField(request.getParameter("userMdn"), "userMdn", true, 20);String uaType = PageUtil.parseStringField(request.getParameter("uaType"), "uaType", true, 100);String inputCh = PageUtil.parseStringField(request.getParameter("inputCh"), "inputCh", true, 100);String fontType = PageUtil.parseStringField(request.getParameter("fontType"), "fontType", true, 100);String userMdn = (model==null?"":""+model.getUserMdn());String uaType = (model==null?"":""+model.getUaType());String inputCh = (model==null?"":""+model.getInputCh());String fontType = (model==null?"":""+model.getFontType());Collection coll = FontBean.queryAll((pageNum-1) * pageRow + 1, pageNum * pageRow);Iterator it = coll.iterator();while ( it.hasNext() ) { Hashtable element = (Hashtable)it.next(); FontModel fontModel = FontBean.toModel(element); String userMdn = fontModel.getUserMdn(); String uaType = fontModel.getUaType(); String inputCh = fontModel.getInputCh(); String fontType = fontModel.getFontType(); excel.setCellData(new ExcelCell(ExcelUtil.STRING_CELL_TYTE, currRow, currCol++), userMdn+""); excel.setCellData(new ExcelCell(ExcelUtil.STRING_CELL_TYTE, currRow, currCol++), uaType+""); excel.setCellData(new ExcelCell(ExcelUtil.STRING_CELL_TYTE, currRow, currCol++), inputCh+""); excel.setCellData(new ExcelCell(ExcelUtil.STRING_CELL_TYTE, currRow, currCol++), fontType+"");*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -