`

bak_time test

阅读更多

        Calendar calendarBegin = Calendar.getInstance();
        long beginLong = calendarBegin.getTimeInMillis();
        Date date_begin = new Date();
        Thread.sleep(1000);
        Calendar calendarEnd = Calendar.getInstance();
        long endLong = calendarEnd.getTimeInMillis();
        Date date_end = new Date();
       
        System.out.println("beginTime: " + new SimpleDateFormat("yyyy-MM-DD HH:mm:ss:SSS").format(date_begin));
        System.out.println("endTime: " + new SimpleDateFormat("yyyy-MM-DD HH:mm:ss:SSS").format(date_end));
        System.out.println("Times:" + (endLong - beginLong) + "s");

分享到:
评论

相关推荐

    oracle常用sql

    CREATE USER C##BAK_TEST_USER IDENTIFIED BY password DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP PROFILE DEFAULT; ``` ##### 用户授权 - **语法**: ```sql GRANT 权限 TO 用户名; ``` **示例**...

    centos7搭建vsftpd教程

    useradd –d /data/vsftpd/test test passwd test ``` 然后,建立虚拟用户文件: ```bash touch /etc/vsftpd/vuser_passwd vi /etc/vsftpd/vuser_passwd ``` 虚拟用户名单文件的内容格式为:`username:password`...

    softap_ap6212a0_tinav2.1_验证通过_旧版本的系统_20170915_1223没有外层目录.7z

    旧版本版本的全志R16平台的tinav2.1的系统打开softAP 2017/9/14 17:25 版本:V1.0 ...$(eval $(call nf_add,IPT_CORE,CONFIG_NETFILTER_XT_MATCH_TIME, $(P_XT)xt_time)) $(eval $(call nf_add,IPT...

    java连接sqlserver示例

    CERTI_TYPE, CERTI, FAX, ADRESS, POSTCODE, BAK1, BAK2, BAK3, BAK4, BAK5)values ('test00"+i+"', 'test00"+i+"', '0001 ', 'FF5E61835C355E755EEF9321 ', 'A43B59E342F86CEE5EEF9321 ', '0 ', '20071201', '...

    无敌服务器php配置文件

    3. **数据库管理**:`create_mysql.php`和`create_test_mysql.php`可能是用来创建MySQL数据库和测试数据库的脚本,这在部署新应用或测试环境中非常有用。它们可能包含了连接数据库、创建表结构和填充初始数据的功能...

    clock_final_asm.rar_闹钟秒表

    - `test_T2.Opt`、`test_T2_Opt.Bak`:可能是优化后的测试文件及其备份,优化可能涉及代码效率提升。 - `STARTUP.LST`:启动清单,可能包含了系统启动时执行的初始化步骤。 7. **汇编语言编程**:由于文件名中...

    Python_OS模块

    back = os.path.splitext(file)[0] + ".bak" temp = os.path.splitext(file)[0] + ".tmp" try: # remove old temp file, if any os.remove(temp) except os.error: pass fi = open(file) fo = open...

    Sqlserver2000 数据库备份实例代码

    代码中定义了一个名为“完全备份”的作业,该作业包含两个步骤,将数据库"Test"备份到两个不同的文件中:`test_full_A.bak` 和 `test_full_B.bak`。备份操作通过`sp_add_job`和`sp_add_jobstep`存储过程进行设置,并...

    餐饮管理系统 +读卡器 VB源码

    在淘宝花50大米买的源码 └─餐饮管理系统 VB源码 │ CALC.EXE │ DAR.TXT │ DAW.TXT │ Form_liknnet.frx │ FrmAbout.frm │ FrmAbout.frx ... ├─testvoice │ CARDCODE.TW │ cardcode_input.tw ...

    centos安装zabbix监控系统

    mv /usr/bin/perl /usr/bin/perl.bak ln -s /usr/local/perl/bin/perl /usr/bin/perl perl -v ``` #### 安装 Zabbix Server 和 Agent 1. **安装 Zabbix Server 和 Zabbix Web**: ```bash yum install ...

    DOS命令说明.docx

    copy c:\test.txt d:\test.bak 命令将复制 c:\test.txt 文件到 d:\test.bak。copy con test.txt 命令将从屏幕上等待输入,按 Ctrl+Z 结束输入,输入内容存为 test.txt 文件。 title 命令 title 命令用于设置 cmd ...

    详细的DOS命令说明

    - `copy c:\test.txt d:\test.bak`: 复制 `c:\test.txt` 到 `d:\` 并重命名为 `test.bak`。 - `copy con test.txt`: 从屏幕接收输入并将其保存为 `test.txt`。 - `copy 1.txt + 2.txt 3.txt`: 将 `1.txt` 和 `2.txt`...

    超声波模块应用(测距)

    - `test_Uv2.Bak` 和 `test_Opt.Bak`:可能是旧版本的测试代码或优化文件。 在实现单片机超声波测距时,需要关注几个重要方面: - **硬件接口**:正确连接超声波模块的TRIG和ECHO引脚到单片机的GPIO端口。 - **时序...

    LinuxFind命令精通指南.pdf

    -name "*.bak" -exec rm {} \; ``` 这里的`-exec`选项后面跟上命令,`{}`作为找到的文件名的占位符,`\;`表示命令的结束。注意,为了安全,通常会使用`+`替换`\;`,这样可以在单个系统调用中处理多个文件,减少...

    dos批处理基础技术教程

    - 示例:`copy c:\test.txt d:\`(将c:\test.txt复制到d:\)或 `copy c:\test.txt d:\test.bak`(将c:\test.txt复制到d:\并重命名为test.bak)。 - **`title`**: 设置命令提示符窗口的标题。 - 示例:`title My ...

    bat命令大全

    - `copy c:\test.txt d:\test.bak`:将c:\test.txt复制到d:\test.bak。 - `copy con test.txt`:从控制台输入内容并保存到test.txt文件。 - `copy 1.txt + 2.txt 3.txt`:合并1.txt和2.txt的内容到3.txt。 #### ...

    系统(Dos)命令集合

    - `copy c:\test.txtd:\test.bak`:将文件test.txt复制到D盘,并重命名为test.bak。 - `copy con test.txt`:从键盘输入数据,输入完成后按Ctrl+Z结束,保存到test.txt文件中。 - `copy 1.txt + 2.txt 3.txt`:将...

Global site tag (gtag.js) - Google Analytics