上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 112 下一页
摘要: List lt = new List(); lt.Add("a"); lt.Add("b"); lt.Add("c"); var s= string.Join("," ,lt.Select(o =>"'"+o+"'").ToArray()); Conso... 阅读全文
posted @ 2016-11-10 18:52 甜菜波波 阅读(392) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Reflection; namespace RequestParameter1.Controllers { public class Search ... 阅读全文
posted @ 2016-11-10 14:04 甜菜波波 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 反射是一个程序集发现及运行的过程,通过反射可以得到*.exe或*.dll等程序集内部的信息。使用反射可以看到一个程序集内部的接口、类、方法、字段、属性、特性等等信息。在System.Reflection命名空间内包含多个反射常用的类,下面表格列出了常用的几个类。 一、System.Reflectio 阅读全文
posted @ 2016-11-10 14:00 甜菜波波 阅读(225) 评论(0) 推荐(0) 编辑
摘要: [title~=站长统计] { display:none; } <a title="站长统计"></a> 阅读全文
posted @ 2016-11-07 18:26 甜菜波波 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1.过滤器的概念 Java中的Filter 并不是一个标准的Servlet ,它不能处理用户请求,也不能对客户端生成响应。 主要用于对HttpServletRequest 进行预处理,也可以对HttpServletResponse 进行后处理,是个典型的处理链。 优点:过滤链的好处是,执行过程中任何 阅读全文
posted @ 2016-11-07 18:25 甜菜波波 阅读(272) 评论(0) 推荐(0) 编辑
摘要: $(function(){ $('#AlertMsg').dialog({ autoOpen: false, width: 300, modal: true, position: 'center', buttons: { "确定": function() { $(thi... 阅读全文
posted @ 2016-11-07 15:50 甜菜波波 阅读(3517) 评论(0) 推荐(0) 编辑
摘要: java 写入文件 阅读全文
posted @ 2016-11-06 19:48 甜菜波波 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1.发布到tomcat后获取应用的根目录 ServletContext s1=this.getServletContext(); String temp=s1.getRealPath("/");//C:\Program Files\Apache Software Foundation\Tomcat 阅读全文
posted @ 2016-11-06 19:21 甜菜波波 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1.导入 2.在src下新建log4j.properties,内容如下 log4j.rootLogger=DEBUG, A1 ,R log4j.appender.A1=org.apache.log4j.ConsoleAppender log4j.appender.A1.layout=org.apac 阅读全文
posted @ 2016-11-06 19:05 甜菜波波 阅读(120) 评论(0) 推荐(0) 编辑
摘要: ${pageContext.request.contextPath} // 应用名为“demo1” 则得到的是"/demo1" <script>$(document).ready(function(){ $.get("${pageContext.request.contextPath}/jsonda 阅读全文
posted @ 2016-11-06 18:47 甜菜波波 阅读(224) 评论(0) 推荐(0) 编辑
上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 112 下一页