Category Archives: Java

Eclipse 插件 Properties Editor 安装地址

编辑properties文件用.

Update地址:

URL : http://propedit.sourceforge.jp/eclipse/updates/

更多说明: http://propedit.sourceforge.jp/howto_eclipseplugin_install_en.h

Posted in Java | Tagged , | 1 Comment

为Eclipse指定JDK

菜鸟上路记.

image

Posted in Java | Tagged , , | Leave a comment

Java: 计算平均分, 标准差, 标准分

本类提供标准差,标准分计算的Utility.

Posted in Java | Tagged , , , | Leave a comment

Java 保持小数点后若干位的操作

DecimalFormat df2 = new DecimalFormat("###.00");

or:

(double) (Math.round(sd3*100)/100.0);

 

09下高一期终语文-平均分
09下期终英语-平均分
09高一下期中考试-

Posted in Java | Tagged | Leave a comment

Java: Map遍历

// 2. 遍历map中所有的元素
Iterator iter = mapSheet.entrySet().iterator();
while(iter.hasNext()) {
Entry entry = iter.next();
int sheetIndex = entry.

Posted in Java | Tagged , , | 1 Comment