?? cstoprcrt.java
字號:
package com.pansky.dcc.trans;
import com.sybase.jdbc2.tds.SybTimestamp;
/**
* Created by IntelliJ IDEA.
* User: fjf
* Date: 2005-7-4
* Time: 2:28:54
* To change this template use File | Settings | File Templates.
*/
public class Cstoprcrt {
public String time(SybTimestamp oldt) {
String newsTime="";
if(oldt !=null){
String old=oldt.toString();
newsTime= old.substring(0,4).concat(old.substring(5,7)).concat(old.substring(8,10)).concat(old.substring(11,13)).concat(old.substring(14,16)).concat(old.substring(17,19));
}
return newsTime;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -