码迷,mamicode.com
首页 >  
搜索关键字:shell 单独jdk jar    ( 50906个结果
mavne中央仓库的jar包导入到本地maven私库
下载到导入的jar包 maven-source-plugin-2.2.1.jar 使用命令导入: mvn install:install-file -Dfile=D:\opensource\maven-source-plugin-2.2.1.jar -DgroupId=org.apache.mave ...
分类:编程语言   时间:2021-04-24 13:46:44    阅读次数:0
JVM 双亲委派机制
JVM类加载器的分类 BootStrap ClassLoader(启动类加载器/引导类加载器) 启动类加载器使用 C/C++ 语言实现,嵌套在 JVM 内部; 它用来加载 Java 的核心库(JAVA_HOME/jre/lib/rt.jar、resources.jar、sun.boot.class. ...
分类:其他好文   时间:2021-04-24 13:46:26    阅读次数:0
「Cron」- 使用技巧 @20210423
如何每秒执行任务? 没有直接的解决方案。因为在Cron中,最小的时间帧是分钟,不能进行每秒钟执行某个任务。 # 方案一:systemd Timer 可以使用systemd Timer,它支持以秒为时间帧来执行任务。 # 方案二:Shell Script 在Cron中,最小的时间帧是分钟。因此可以写一 ...
分类:其他好文   时间:2021-04-24 13:38:24    阅读次数:0
python--python脚本中调用shell命令
文章目录python脚本调用shell命令os.system()os.popen()subprocess.call()subprocess.Popen()commandspython脚本传参数给shell命令python脚本获取命令行用户输入参数python传参数给shell命令python传参数给 ...
分类:编程语言   时间:2021-04-24 13:19:00    阅读次数:0
idea忽略提交
*.classpath;*.gitignore;*.hprof;*.iml;*.pyc;*.pyo;*.rbc;*.settings;*.sh;*.yarb;*~;.DS_Store;*.git;*.hg;*.class;*.original;*.idea;*.lst;*.log;*.jar;.pr ...
分类:其他好文   时间:2021-04-24 13:10:50    阅读次数:0
spire.xls 将excel转为pdf
我的idea使用maven引入依赖没有成功,只能下载jar包 下载jar包地址: http://repo.e-iceblue.com/nexus/content/groups/public/e-iceblue/spire.xls.free/ pom.xml中配置jar所在路径 <dependency ...
分类:其他好文   时间:2021-04-23 12:25:08    阅读次数:0
基本的dos命令
powershell快捷打开方式 powershell打开:在任意目录下,按住shift,然后右键,选择“在此处打开powershell”即可 常用dos命令 #盘符切换 d:\ ...
分类:其他好文   时间:2021-04-23 12:05:00    阅读次数:0
linux shell while循环
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:系统相关   时间:2021-04-23 12:03:54    阅读次数:0
adb 截屏和录屏
1、截屏 adb shell screencap -p /sdcard/a.png 2、录屏 adb shell screenrecord /sdcard/a.mp4 ...
分类:数据库   时间:2021-04-23 11:57:08    阅读次数:0
linux shell if语句
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if ...
分类:系统相关   时间:2021-04-23 11:53:02    阅读次数:0
50906条   上一页 1 ... 23 24 25 26 27 ... 5091 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!