📄 poilogger.java
字号:
*/ public void log(final int level, final Object obj1, final Object obj2, final Object obj3, final Object obj4, final Object obj5, final Throwable exception) { if (check(level)) { log(level, new StringBuffer(80).append(obj1).append(obj2) .append(obj3).append(obj4).append(obj5), exception); } } /** * Log a message. Lazily appends Object parameters together. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param obj1 first Object to place in the message * @param obj2 second Object to place in the message * @param obj3 third object to place in the message * @param obj4 fourth object to place in the message * @param obj5 fifth object to place in the message * @param obj6 sixth object to place in the message * @param exception An exception to be logged */ public void log(final int level, final Object obj1, final Object obj2, final Object obj3, final Object obj4, final Object obj5, final Object obj6, final Throwable exception) { if (check(level)) { log(level , new StringBuffer(96).append(obj1) .append(obj2).append(obj3).append(obj4).append(obj5) .append(obj6), exception); } } /** * Log a message. Lazily appends Object parameters together. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param obj1 first Object to place in the message * @param obj2 second Object to place in the message * @param obj3 third object to place in the message * @param obj4 fourth object to place in the message * @param obj5 fifth object to place in the message * @param obj6 sixth object to place in the message * @param obj7 seventh object to place in the message * @param exception An exception to be logged */ public void log(final int level, final Object obj1, final Object obj2, final Object obj3, final Object obj4, final Object obj5, final Object obj6, final Object obj7, final Throwable exception) { if (check(level)) { log(level, new StringBuffer(112).append(obj1).append(obj2) .append(obj3).append(obj4).append(obj5).append(obj6) .append(obj7), exception); } } /** * Log a message. Lazily appends Object parameters together. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param obj1 first Object to place in the message * @param obj2 second Object to place in the message * @param obj3 third object to place in the message * @param obj4 fourth object to place in the message * @param obj5 fifth object to place in the message * @param obj6 sixth object to place in the message * @param obj7 seventh object to place in the message * @param obj8 eighth object to place in the message * @param exception An exception to be logged */ public void log(final int level, final Object obj1, final Object obj2, final Object obj3, final Object obj4, final Object obj5, final Object obj6, final Object obj7, final Object obj8, final Throwable exception) { if (check(level)) { log(level, new StringBuffer(128).append(obj1).append(obj2) .append(obj3).append(obj4).append(obj5).append(obj6) .append(obj7).append(obj8), exception); } } /** * Logs a formated message. The message itself may contain % * characters as place holders. This routine will attempt to match * the placeholder by looking at the type of parameter passed to * obj1.<p> * * If the parameter is an array, it traverses the array first and * matches parameters sequentially against the array items. * Otherwise the parameters after <code>message</code> are matched * in order.<p> * * If the place holder matches against a number it is printed as a * whole number. This can be overridden by specifying a precision * in the form %n.m where n is the padding for the whole part and * m is the number of decimal places to display. n can be excluded * if desired. n and m may not be more than 9.<p> * * If the last parameter (after flattening) is a Throwable it is * logged specially. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param message The message to log. * @param obj1 The first object to match against. */ public void logFormatted(final int level, final String message, final Object obj1) { commonLogFormatted(level, message, new Object[] { obj1 }); } /** * Logs a formated message. The message itself may contain % * characters as place holders. This routine will attempt to match * the placeholder by looking at the type of parameter passed to * obj1.<p> * * If the parameter is an array, it traverses the array first and * matches parameters sequentially against the array items. * Otherwise the parameters after <code>message</code> are matched * in order.<p> * * If the place holder matches against a number it is printed as a * whole number. This can be overridden by specifying a precision * in the form %n.m where n is the padding for the whole part and * m is the number of decimal places to display. n can be excluded * if desired. n and m may not be more than 9.<p> * * If the last parameter (after flattening) is a Throwable it is * logged specially. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param message The message to log. * @param obj1 The first object to match against. * @param obj2 The second object to match against. */ public void logFormatted(final int level, final String message, final Object obj1, final Object obj2) { commonLogFormatted(level, message, new Object[] { obj1, obj2 }); } /** * Logs a formated message. The message itself may contain % * characters as place holders. This routine will attempt to match * the placeholder by looking at the type of parameter passed to * obj1.<p> * * If the parameter is an array, it traverses the array first and * matches parameters sequentially against the array items. * Otherwise the parameters after <code>message</code> are matched * in order.<p> * * If the place holder matches against a number it is printed as a * whole number. This can be overridden by specifying a precision * in the form %n.m where n is the padding for the whole part and * m is the number of decimal places to display. n can be excluded * if desired. n and m may not be more than 9.<p> * * If the last parameter (after flattening) is a Throwable it is * logged specially. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param message The message to log. * @param obj1 The first object to match against. * @param obj2 The second object to match against. * @param obj3 The third object to match against. */ public void logFormatted(final int level, final String message, final Object obj1, final Object obj2, final Object obj3) { commonLogFormatted(level, message, new Object[] { obj1, obj2, obj3 }); } /** * Logs a formated message. The message itself may contain % * characters as place holders. This routine will attempt to match * the placeholder by looking at the type of parameter passed to * obj1.<p> * * If the parameter is an array, it traverses the array first and * matches parameters sequentially against the array items. * Otherwise the parameters after <code>message</code> are matched * in order.<p> * * If the place holder matches against a number it is printed as a * whole number. This can be overridden by specifying a precision * in the form %n.m where n is the padding for the whole part and * m is the number of decimal places to display. n can be excluded * if desired. n and m may not be more than 9.<p> * * If the last parameter (after flattening) is a Throwable it is * logged specially. * * @param level One of DEBUG, INFO, WARN, ERROR, FATAL * @param message The message to log. * @param obj1 The first object to match against. * @param obj2 The second object to match against. * @param obj3 The third object to match against. * @param obj4 The forth object to match against. */ public void logFormatted(final int level, final String message, final Object obj1, final Object obj2, final Object obj3, final Object obj4) { commonLogFormatted(level, message, new Object[] { obj1, obj2, obj3, obj4 }); } private void commonLogFormatted(final int level, final String message, final Object [] unflatParams) { if (check(level)) { Object[] params = flattenArrays(unflatParams); if (params[ params.length - 1 ] instanceof Throwable) { log(level, StringUtil.format(message, params), ( Throwable ) params[ params.length - 1 ]); } else { log(level, StringUtil.format(message, params)); } } } /** * Flattens any contained objects. Only tranverses one level deep. */ private Object [] flattenArrays(final Object [] objects) { List results = new ArrayList(); for (int i = 0; i < objects.length; i++) { results.addAll(objectToObjectArray(objects[ i ])); } return ( Object [] ) results.toArray(new Object[ results.size() ]); } private List objectToObjectArray(Object object) { List results = new ArrayList(); if (object instanceof byte []) { byte[] array = ( byte [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Byte(array[ j ])); } } if (object instanceof char []) { char[] array = ( char [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Character(array[ j ])); } } else if (object instanceof short []) { short[] array = ( short [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Short(array[ j ])); } } else if (object instanceof int []) { int[] array = ( int [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Integer(array[ j ])); } } else if (object instanceof long []) { long[] array = ( long [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Long(array[ j ])); } } else if (object instanceof float []) { float[] array = ( float [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Float(array[ j ])); } } else if (object instanceof double []) { double[] array = ( double [] ) object; for (int j = 0; j < array.length; j++) { results.add(new Double(array[ j ])); } } else if (object instanceof Object []) { Object[] array = ( Object [] ) object; for (int j = 0; j < array.length; j++) { results.add(array[ j ]); } } else { results.add(object); } return results; } } // end package scope abstract class POILogger
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -