问题:通常在eclipse,IntelliJ IDEA等进行代码编写时,程序中用到路径通常采用/job/test.properties或D:/job/test.properties等是形式作为文件路径,对文件进行读或者写的时候,在编译器中是没有任何问题的,但是在linux环境运行时往往出现读取文件路径不存在,写的路径不正确等问题. 这是因为windows环境下默认的路径分割符为“/”,而linux下为“\”导致的,解决问题的办法如下代码所示: public static final String…
Docker on Windows Server 2019 微软自Windows Server 2016开始支持Docker,今天我们将介绍在Windows Server 2019上安装并使用Docker容器. Install Docker EE on windows server 2019 启用服务器Hyper-V,Containers特性 Install-WindowsFeature -Name Hyper-V,Containers -IncludeAllSubFeature -Includ…
最近搭建了windows phone 8.1开发环境,为了开机就可以进行WP8.1开发,就使用了 bcdedit /set {BCD ID} hypervisorlaunchtype auto 命令将Hyper-V随机启动,现在需要在vmware中运行linux系统,打开虚拟机就提示以下错误: vmware workstation and hyper-v are not compatible. Remove the hyper-v role from the system before runn…
你可以依次点击"开始→程序→附件→命令提示符",键入:msiexec /unregister, 然后再键入msiexec /regserver.应该就能解决. 更多的参考:How to Start/Stop Windows Installer service Win+R 输入 msconfig 后可以自行改变启动选项.…
在定时脚本运行过程中,发现当备份表格的sql语句与删除该表部分数据的sql语句同时运行时,mysql会检测出死锁,并打印出日志. 两个sql语句如下: (1)insert into backup_table select * from source_table (2)DELETE FROM source_table WHERE Id>5 AND titleWeight<32768 AND joinTime<'$daysago_1week' teamUser表的表结构如下: PRIMARY…