码迷,mamicode.com
首页 >  
搜索关键字:maybe not public    ( 83099个结果
自定义配置文件的使用
经常在使用APP.CONFIG 或WEB.CONFIG时,发现系统中的配置无法满足自己的需求。这时就需要自定义的配置文件处理:现需要在配置文件中定义可增加删除任务的功能。可根据需要增加一个或删除任务。定义配置节点 /// /// MRP自定义配置类 /// public ...
分类:其他好文   时间:2014-05-19 21:03:37    阅读次数:302
[leetcode]_Remove Nth Node From End of List
题目:移除linked-list从尾到头的第N个元素自我思路:因为题目给出的N是从链表尾开始计算的,单链表不存在从子指向父亲的反向指针,因此我先计算链表的整个长度len,然后用len - N来表示正向被删除元素所在的位置。代码:public ListNode removeNthFromEnd(Lis...
分类:其他好文   时间:2014-05-19 20:54:33    阅读次数:378
el表达式
el表达式可以直接访问action中的属性值,而不是成员变量。下面代码中在jsp中应该这样写:${name},而不是${age}e.g:action{ private int age;//成员变量 public String getName(){ //Name为属性 return age;...
分类:其他好文   时间:2014-05-19 20:36:26    阅读次数:599
C# 过滤html标签
public static string checkStr(string html) { System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex...
分类:Web程序   时间:2014-05-19 20:31:20    阅读次数:385
关于winform的appconfig的读写操作
public string ReadConfig() { List list = new List(); ExeConfigurationFileMap file = new ExeConfigurationFileMap(); ...
分类:移动开发   时间:2014-05-19 11:21:03    阅读次数:279
C#执行cmd命令
1 public class Console : IRun 2 { 3 public Console(){ 4 this.TimeOut = 3000; 5 } 6 public string Result 7 ...
分类:其他好文   时间:2014-05-19 10:54:35    阅读次数:202
jxl设置第一行单元格格式3
setColumnView是可以用,setRowView还是没效果是这样的来个更诡异的Java代码 收藏代码import java.io.*; import jxl.*; import jxl.write.*; public class JxlTest { public static void .....
分类:其他好文   时间:2014-05-19 10:24:28    阅读次数:167
WPF控件库:文字按钮的封装
需求:封装按钮,按钮上面只显示文字。在鼠标移上去、鼠标点击按钮、以及将按钮设为不可用时按钮的背景色和前景色需要发生变化实现:继承Button类,封装如下6个属性:#region 依赖属性/// /// 当鼠标移到按钮上时,按钮的前景色(这是依赖属性)/// public static readonl...
分类:其他好文   时间:2014-05-19 09:31:42    阅读次数:250
TableInfo<T> or TypeInfo
class TableInfo where T : new() { public TableInfo() { Type type = typeof(T); TableAttribute tableattr = ty...
分类:其他好文   时间:2014-05-19 09:29:01    阅读次数:210
快速Android开发系列网络篇之Android-Async-Http
先来看一下最基本的用法AsyncHttpClient client = new AsyncHttpClient();client.get("http://www.google.com", new AsyncHttpResponseHandler() { @Override public ...
分类:移动开发   时间:2014-05-19 09:03:50    阅读次数:405
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!