在HBase中,可以使用Java代碼來獲取當(dāng)前時(shí)間并顯示。可以使用以下代碼片段:
import java.text.SimpleDateFormat;
import java.util.Date;
public class HBaseCurrentTime {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currentTime = sdf.format(new Date());
System.out.println("Current time is " + currentTime);
}
}
這段代碼會(huì)將當(dāng)前時(shí)間按照"yyyy-MM-dd HH:mm:ss"的格式進(jìn)行格式化,并輸出到控制臺(tái)上。你可以根據(jù)需要修改日期格式。