摘要: 代码格式化:ctrl+a、ctrl+k、ctrl+f 代码自动换行:工具→选项→文本编辑器→C#→自动换行→勾选 阅读全文
posted @ 2020-05-05 11:20 铜丝儿 阅读(243) 评论(0) 推荐(0)
摘要: 1.Microsoft Visual Studio 2015 打开编辑器提示“已停止工作”。 问题描述: 问题事件名称: APPCRASH 应用程序名: devenv.exe 应用程序版本: 14.0.25420.1 应用程序时间戳: 57685d85 故障模块名称: KERNELBA 解决方式: 阅读全文
posted @ 2020-04-30 16:47 铜丝儿 阅读(271) 评论(0) 推荐(0)
摘要: 在百度地图基础上进行个性化开发实例:http://lbsyun.baidu.com/index.php?title=jspopularGL/guide/addOverlay 坐标拾取:http://api.map.baidu.com/lbsapi/getpoint/index.html API2.0 阅读全文
posted @ 2020-04-29 10:46 铜丝儿 阅读(148) 评论(0) 推荐(0)
摘要: 效果 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w 阅读全文
posted @ 2020-04-29 10:41 铜丝儿 阅读(258) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>JSON接口测试工具(ver1.2)</title> <script src="http://cdn.bootcss.com/jquery/1.9.1/jquery.min.j 阅读全文
posted @ 2020-04-28 11:06 铜丝儿 阅读(1873) 评论(0) 推荐(0)
摘要: 创建一个每天执行一次存储过程(无参、无返回值) DECLARE jobno numeric; BEGIN dbms_job.submit(jobno, 'YP_WL_SJDR;', sysdate, 'TRUNC(SYSDATE+1)'); END; 每次执行间隔时间设置 TRUNC(SYSDATE 阅读全文
posted @ 2020-04-24 11:01 铜丝儿 阅读(229) 评论(0) 推荐(0)
摘要: 示例1:获取菜单导航信息 应用知识点:while循环 create or replace PROCEDURE XT_CD_DHL( cdid IN VARCHAR, jb IN INT, res OUT VARCHAR) AS--声明变量 num INT :=0; mc VARCHAR(50); d 阅读全文
posted @ 2020-04-24 09:56 铜丝儿 阅读(199) 评论(0) 推荐(0)
摘要: import com.univocity.parsers.tsv.TsvParser; import com.univocity.parsers.tsv.TsvParserSettings; import org.springframework.util.ClassUtils; public cla 阅读全文
posted @ 2020-04-20 13:13 铜丝儿 阅读(2011) 评论(0) 推荐(0)
摘要: package com.sinoup.util;/** * Created by Administrator on 2020-4-18. */ /** * @Title: * @ProjectName * @Description:比较字符串相似度 * @author: TongSiYu * @da 阅读全文
posted @ 2020-04-18 17:10 铜丝儿 阅读(362) 评论(0) 推荐(0)
摘要: FileInputStream fileInputStream = new FileInputStream(rootPath + path + "/" + fileName); List<String> list = ExcelUtils.queryTopCell(fileInputStream, 阅读全文
posted @ 2020-04-15 09:41 铜丝儿 阅读(2480) 评论(0) 推荐(0)