<! TOC "HttpURLConnection" "访问get资源" "访问post资源" "访问Delete资源" "获取状态码" "结语" <! /TOC HttpURLConnection 访问get资源 获取状态码 结语 ...
分类:
编程语言 时间:
2018-10-07 16:50:57
阅读次数:
143
关于layUI模块的核心,就是 layui.js 的两个底层方法:一个用于定义模块的 layui.define(),一个加载模块的 layui.use() 1、预先加载 Layui的模块加载采用核心的 layui.use(mods, callback)方法,当你的JS 需要用到Layui模块的时候, ...
分类:
其他好文 时间:
2018-10-07 16:50:47
阅读次数:
239
如何禁止VS显示“You have mixed tabs and spaces. Fix this?” VS2013 版本的解决方案: Vs2013 IDE下,编辑C++的工程源码,在打开文件的时候,会出现 “ you have mixed tabs and spaces fix this ”, 然 ...
分类:
其他好文 时间:
2018-10-07 16:48:16
阅读次数:
381
5201 数字组合 0x50「动态规划」例题 描述 在N个数中找出其和为M的若干个数。先读入正整数N(1<N<100)和M(1<M<10000), 再读入N个正数(可以有相同的数字,每个数字均在1000以内), 在这N个数中找出若干个数, 使它们的和是M, 把满足条件的数字组合都找出来以统计组合的个 ...
分类:
编程语言 时间:
2018-10-07 16:04:04
阅读次数:
282
Given a string S, return the "reversed" string where all characters that are not a letter stay in the same place, and all letters reverse their positi ...
分类:
编程语言 时间:
2018-10-07 14:35:27
阅读次数:
222
E - Aquarium decoration 枚举两个人都喜欢的个数,就能得到单个喜欢的个数,然后用平衡树维护前k大的和。 ...
分类:
其他好文 时间:
2018-10-07 12:15:11
阅读次数:
124
题目描述 A template for an artwork is a white grid of n × m squares. The artwork will be created by painting q horizontal and vertical black strokes. A st ...
分类:
其他好文 时间:
2018-10-07 12:09:34
阅读次数:
145
protected void GridView_dept_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { if (e.Row.RowInd ...
分类:
其他好文 时间:
2018-10-07 00:45:21
阅读次数:
487
解决集成jpa时报错无法创建少导入entityManagerFactory的问题最近将IDEA2018.1版本更新到了2018.2版本,更新好后跑了一下之前的项目,结果就报错了,这个项目集成了springdatajpa。由于该错误有多种原因导致,在解决该错误的时候也花了一些时间,所以特别记录一下。关键的报错信息如下:org.springframework.beans.factory.BeanCre
分类:
其他好文 时间:
2018-10-06 23:42:12
阅读次数:
421
区间合并 dp[i][j] = min(dp[i][k] + dp[k+1][j] + p[i-1]*p[k]*p[j]) { i<=k<j } ...
分类:
其他好文 时间:
2018-10-06 22:08:18
阅读次数:
236