📄 cf_hhhmmss.java
字号:
/*
* ====================================================================
* This software is subject to the terms of the Common Public License
* Agreement, available at the following URL:
* http://www.opensource.org/licenses/cpl.html .
* Copyright (C) 2003-2004 TONBELLER AG.
* All Rights Reserved.
* You must accept the terms of that agreement to use this software.
* ====================================================================
*
*
*/
package com.tonbeller.jpivot.olap.model.impl;
import java.text.DecimalFormat;
import com.tonbeller.jpivot.olap.model.Cell;
import com.tonbeller.jpivot.olap.model.CellFormatter;
/**
* this is an example for the cell formatting exit
* returns hhh:mm:ss for the value beeing number of seconds
* hhh = hours
* mm = minutes
* ss = seconds
*/
public class CF_hhhmmss implements CellFormatter {
static DecimalFormat f00 = new DecimalFormat("00");
public String formatCell(Cell cell) {
long longVal = objToLong(cell.getValue());
long hours = longVal / 3600;
long secs = longVal % 3600;
long mins = secs / 60;
secs = secs % 60;
String str = Long.toString(hours) + ":" + f00.format(mins) + ":" + f00.format(secs);
return str;
}
public static long objToLong(Object obj) {
long longVal;
if (obj instanceof Double)
longVal = ((Double) obj).longValue();
else if (obj instanceof Long)
longVal = ((Long) obj).longValue();
else if (obj instanceof Integer)
longVal = ((Integer) obj).longValue();
else if (obj instanceof String)
longVal = Long.parseLong((String) obj);
else
longVal = 0;
return longVal;
}
} // CellFormat
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -