判断网络的情况中,有个比较麻烦的情况就是连上了某个网络,但是那个网络无法上网 ,,, = =想到了用ping指令来判断,经测试,可行~ ~ ~private staticfinal boolean ping() {String result = null;try {String ip = "www....
分类:
移动开发 时间:
2014-07-22 22:42:54
阅读次数:
174
select a.* from A awhere exists ( select 1 from B b where a.id=b.id ) 1 public List exist(){ 2 List result; 3 Array A=(select * from A) 4 5 for...
分类:
其他好文 时间:
2014-07-22 00:13:34
阅读次数:
202
代码: DialogResult result = MessageBox.Show("确定移除选中词吗?", "移除选中",MessageBoxButtons.YesNo,MessageBoxIcon.Information); if (result == Dia...
分类:
其他好文 时间:
2014-07-22 00:12:34
阅读次数:
333
PHP: echo Json_encode($result);Jquery:$.get( 'process.php', {'p1':'aa','p2':'dd', 'data_type':'json'}, function(data){ ...
分类:
Web程序 时间:
2014-07-21 23:31:01
阅读次数:
232
多重集组合数 代码(C)本文地址: http://blog.csdn.net/caroline_wendy题目: 有n种物品, 第i种物品有a个. 不同种类的物品可以互相区分, 但相同种类的无法区分.从这些物品中取出m个, 有多少种取法? 求出数模M的余数.例如: 有n=3种物品, 每种a={1,2,3}个, 取出m=3个, 取法result=6(0+0+3, 0+1+2, 0+2+1, 1+0+...
分类:
其他好文 时间:
2014-07-21 11:38:56
阅读次数:
248
划分数 代码(C)本文地址: http://blog.csdn.net/caroline_wendy题目: 有n个无区别的物品, 将它们划分成不超过m组, 求出划分方法数模M的余数.例如: n=4的m=3个划分, result=4(1,1,2; 1,3; 2,2; 4)使用动态规划(DP)方法, n的m划分a, 如果每个i都有a, {a-1}的集合就是n-m的m划分; a=0时, 就是n的m-1划...
分类:
其他好文 时间:
2014-07-21 11:14:04
阅读次数:
198
最近在学习用Python开发web,使用的是web框架,在win8.1平台下安装SAE和Flask的时候总是在ntpath.py这个UnicodeDecodeError模块报错。84行 result_path = result_path+ p_path 显示的错误就是UnicodeDecode...
分类:
其他好文 时间:
2014-07-21 08:20:06
阅读次数:
212
原文:http://rachelappel.com/asp.net-mvc-actiohttp://i.cnblogs.com/EditPosts.aspx?postid=3857238&update=1nresults-explained1.前言 Action Result在ASP.NET MV....
分类:
Web程序 时间:
2014-07-20 23:38:26
阅读次数:
516
最长上升子序列问题 代码(C)本文地址: http://blog.csdn.net/caroline_wendy题目: 有一个长为n的数列a. 请求出这个序列中最长上升子序列的长度. 最长上升子序列的数字之间可以有间隔.即最长上升子序列(LIS, Longest Increasing Subsequence), 例如: n=5, a={4,2,3,1,5}, result=3(2,3,5).使用动...
分类:
其他好文 时间:
2014-07-20 22:34:43
阅读次数:
297
Java注释分类
1、单行注释
//打印结果
System.out.println("结果是:"+result);
2、多行注释
/**
* @author youhaidong
* for循环语句
*/
for(int i=0;i
{
System.out.println(i);
...
分类:
编程语言 时间:
2014-07-20 10:18:28
阅读次数:
199