1、网上搜到的一般的都好繁琐,偶尔搜到了这个简单: private void Click_CMD(object sender, RoutedEventArgs e) { //ProcessStartInfo start = new ProcessStartInfo(@"C:\Users\33\Des ...
打开bat文件,在开头处写入 @echo off if "%1" == "h" goto beginmshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit:beginREM (接着写内 ...
分类:
其他好文 时间:
2020-04-09 16:46:10
阅读次数:
165
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 package ssg; public class bat { public static void main(String[] args) { // TODO Auto-generated me ...
分类:
其他好文 时间:
2020-04-09 12:38:26
阅读次数:
75
@echo off rem %~dpnx0% d驱动器号 p路径 n文件名 x文件后缀名 0自身 call %~dp0%\shutdown.bat ping -n 3 127.0.0.1 > nul call %~dp0%\startup.bat ...
分类:
其他好文 时间:
2020-04-08 17:36:10
阅读次数:
78
tomcat的主要目录的概念 1、bin目录(主要目录) 主要是用来存放tomcat的命令,比如启动和停止。主要有两大类 以.sh结尾的(linux命令) 以.bat结尾的(windows命令) 很多环境变量的设置都在此处,例如可以设置JDK路径、TOMCAT路径,startup 用来启动tomca ...
分类:
其他好文 时间:
2020-04-07 18:44:14
阅读次数:
71
local slider_Boos = {} slider_Boos.Slider = cc.ControlSlider:create( cc.Sprite:create("majia/images/battle/boosSlider_bg.png"), cc.Sprite:create("maji ...
分类:
其他好文 时间:
2020-04-07 13:03:52
阅读次数:
82
1、准备数据 cifar2数据集为cifar10数据集的子集,只包括前两种类别airplane和automobile。 训练集有airplane和automobile图片各5000张,测试集有airplane和automobile图片各1000张。 cifar2任务的目标是训练一个模型来对飞机air ...
分类:
其他好文 时间:
2020-04-06 20:48:30
阅读次数:
159
leetcode 49. Group Anagrams Given an array of strings, group anagrams together. Example: Input: ["eat", "tea", "tan", "ate", "nat", "bat"], Output: [ ...
分类:
其他好文 时间:
2020-04-06 17:19:17
阅读次数:
69
hystrix.command.default和hystrix.threadpool.default中的default为默认CommandKey Execution相关的属性的配置: hystrix.command.default.execution.isolation.strategy隔离策略,默 ...
分类:
编程语言 时间:
2020-04-05 18:20:10
阅读次数:
63
Q:给定一个字符串数组,将字母异位词组合在一起。字母异位词指字母相同,但排列不同的字符串。 示例: 输入: ["eat", "tea", "tan", "ate", "nat", "bat"], 输出: [ ["ate","eat","tea"], ["nat","tan"], ["bat"] ] ...
分类:
其他好文 时间:
2020-04-05 11:59:14
阅读次数:
79