debugutil.java

来自「使用resin3.0服务器, 默认情况下,jsp文件放到docmysideex」· Java 代码 · 共 26 行

JAVA
26
字号
package com.huiton.cerp.pub.util;

/**
 * Title:        CERP测试框架
 * Description:
 * Copyright:    Copyright (c) 2000
 * Company:      BRITC
 * @author 吴剑
 * @version 1.0
 */
import java.util.*;
import com.huiton.mainframe.util.tracer.Debug;

public class DebugUtil {
    // 打印 HashMap 中的记录
    public static void showHashMapRecord(HashMap recordMap) {
        Iterator it = recordMap.keySet().iterator();
        String strKey, strValue;
        while(it.hasNext()) {
            strKey = (String)it.next();
            strValue = (String)recordMap.get(strKey);
            Debug.println("DraftDocuBean.releaseDocu: keys = " + strKey +
                                "     value = " + strValue);
        }
    }
}

⌨️ 快捷键说明

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