Eating out What do you think of Haidilao hot pot Kung Pao Chicken roast Beijing duck Chop bell pepper fish head 剁椒鱼头 Yuxiang shredded pork 鱼香肉丝 Buddha ...
分类:
其他好文 时间:
2021-05-24 03:55:56
阅读次数:
0
JAVA: public final int numWaterBottles(int numBottles, int numExchange) { int re = numBottles, empty = numBottles; while (empty >= numExchange) { int ...
分类:
其他好文 时间:
2021-05-24 03:39:54
阅读次数:
0
public class ThreadDemo { //1.定义一个静态变量,因为静态变量是线程共享的 public static int count = 0; //2.定义一个自增的方法 public static void add() { try { Thread.sleep(1);//让程序睡 ...
分类:
编程语言 时间:
2021-05-24 02:11:00
阅读次数:
0
1.使用虚拟目录是,后端中的重定向等该如何处理 string path = filterContext.HttpContext.Request.ApplicationPath; if (path == "/") { path = ""; } filterContext.Result = new Re ...
分类:
Web程序 时间:
2021-05-24 01:38:02
阅读次数:
0
@RequestMapping(value = "/downfile", method = RequestMethod.GET) public void downfile(HttpServletRequest request, HttpServletResponse response) { try ...
分类:
编程语言 时间:
2021-05-24 00:28:07
阅读次数:
0
func (o *MsSqlUtils) ExecuteSql(cmd string) (err1 error, affected int64) { defer func() { //必须要先声明defer,否则不能捕获到panic异常 if err2 := recover(); err2 != n ...
分类:
编程语言 时间:
2021-05-24 00:20:08
阅读次数:
0
XML 文件解析 public DataTable XMLParse(string POAddFile) { DataTable addDt = _GetPOAddTable(); FileStream fr = null; try { XmlDocument doc; doc = new XmlD ...
分类:
其他好文 时间:
2021-05-24 00:15:21
阅读次数:
0
调用cmd.exe 连接磁盘 public string connectFTP(string vPath, string vUID, string vPassword) { string errormsg = ""; Process proc = new Process(); try { proc. ...
分类:
其他好文 时间:
2021-05-24 00:14:58
阅读次数:
0
''' ! Creat Date: 2021-5-4 ! Author: xdd1997 ! Email: xdd2026@qq.com ''' import re # 输入文件 # 接口 filePath = 'D:\\Desktop\\uu.lis' 也可以 filePath = r'D:\De ...
分类:
编程语言 时间:
2021-05-24 00:13:27
阅读次数:
0
自定义封装多个回调函数的执行 <script src="./Promise.js"></script> let p = new Promise((resolve, reject) => { setTimeout(() => { resolve('ok'); }, 1000) }) p.then(re ...
分类:
其他好文 时间:
2021-05-23 23:46:05
阅读次数:
0