📄 debugutil.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -