代码改变世界 错误: Type inference failed : Not enough information to infer parameter T in fun<T:View> findViewById(id: Int): T! Please specify it explicitly. 解决: 改为 holder.btnInstall = convertView.findViewById<Button>(R.id.btn_install) 转自:http://blog.…
1.we sue the Search Engines Shodan we can gather much information on the line web , such we want to find a American IIS service  we can use the commands :  IIS 8.0 hostname:microsoft.com  country:US the key words :   country :US      city:Baijing   h…
反射是java的一个特性,这一特性也使得它给了广大的第三方框架和开发过者很大的想像空间. 通过反射,java可以动态的加载未知的外部配置对象,临时生成字节码进行加载使用,从而使代码更灵活!可以极大地提高应用的扩展性! 但是,除了停留在使用其华丽功能,我们还可以去看看其实现! 主要看两个方法的使用: 来个例子! public class HelloReflect { public static void main(String[] args) { try { // 1. 使用外部配置的实现,进行动…
前言 阅读本文之前,您也可以到Asp.Net Web API 2 系列导航进行查看 http://www.cnblogs.com/aehyok/p/3446289.html 路由就是Web API如何把URI匹配到一个Action的描述.Web API支持一种新的路由类型,被叫做属性路由.顾名思义,属性路由是用属性来创建路由.在你的Web API中属性路由可以让你更好的控制URI.你能容易的创建描述资源阶层的URIs. 较早的基于公约的路由风格是全面被支持的.事实上,你能够在同一个项目中联合使用…
Have you ever wanted to set up your own VPN server? By following the steps below, you can set up your own L2TP VPN server on CentOS 6. Note that an L2TP VPN, which we’re setting up here, is more secure than a PPTP VPN server. OpenVPN is another alter…
1. public class ListFiles extends Activity { ListView Listview=null; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); super.setContentView(R.layout.files); Listview=(ListView) super.findViewById(R.id.list);//获取…
B/S 类项目改善的一些建议   要分享的议题 性能提升:在访问量逐渐增大的同时,如何增大单台服务器的 PV2 上限,增加 TPS3 ? RESTful:相较于传统的 SOAP1,RESTful 风格架构有哪些优点?做法有哪些区别? 微服务:随着企业越来越大,系统会越来越大,越来越难维护,如何在保证“稳”的同时,还保证有小企业的“灵活”? 简要的介绍 性能提升 最常用的性能提高方式可以通过使用服务器的集群来解决,简单粗暴的理解就是增加银行柜员的数量.但是,一味的只考虑从服务端提供性能,并不是聪明…
路由(Routing)就是Web API如何将一个URI匹配到一个action的过程.Web API 2 支持一个新的路由方式-属性路由(attribute routing).顾名思义,属性路由使用标识属性去定义路由,属性路由可以使你在Web API中更方便的定制你的URIs.例如,你可以很容易的创建描述不同层次资源的URIs. 前面将的路由风格,叫做基于约定的路由(convention-based)在Web API中也完全支持,实际上,你能够在项目中同时使用两种路由技术. 这篇文章主要演示如何…
Web API 2中的属性路由 前言 阅读本文之前,您也可以到Asp.Net Web API 2 系列导航进行查看 http://www.cnblogs.com/aehyok/p/3446289.html 路由就是Web API如何把URI匹配到一个Action的描述.Web API支持一种新的路由类型,被叫做属性路由.顾名思义,属性路由是用属性来创建路由.在你的Web API中属性路由可以让你更好的控制URI.你能容易的创建描述资源阶层的URIs. 较早的基于公约的路由风格是全面被支持的.事实…
Route Constraints Route constraints let you restrict how the parameters in the route template are matched. The general syntax is "{parameter:constraint}". For example: [Route("users/{id:int}"] public User GetUserById(int id) { ... } [R…