上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 57 下一页

2012年5月5日

电影集合

摘要: http://my.tv.sohu.com/u/vw/15069954 卑鄙的我http://www.letv.com/ptv/vplay/1565842.html 海豚湾http://v.youku.com/v_show/id_XMzUzODk3MTQw.html 海上钢琴师 导演版 阅读全文

posted @ 2012-05-05 15:31 雨渐渐 阅读(139) 评论(0) 推荐(0) 编辑

数据结构____单链表

摘要: public class WordLinkedList { private static class Node{ private char element; private Node next; private Node(char element){ this.element=element; } } private Node root; private Node tail; public void add(char item){ //方法一 性能高 Node nodeNew=new Node(item); if(root==null){ root=tail... 阅读全文

posted @ 2012-05-05 08:54 雨渐渐 阅读(123) 评论(0) 推荐(0) 编辑

2012年4月24日

utf-8转码为ascii

摘要: utf-8转码为ascii windows下是调用apiTo Read a file encoded with UTF-8, use a BufferedReader: BufferedReader br = new BufferedReader(new InputStreamReader(new ... 阅读全文

posted @ 2012-04-24 10:12 雨渐渐 阅读(573) 评论(0) 推荐(0) 编辑

2012年4月20日

OGC

摘要: http://blog.csdn.net/warrenwyf/article/category/705714 阅读全文

posted @ 2012-04-20 17:07 雨渐渐 阅读(104) 评论(0) 推荐(0) 编辑

2012年4月11日

WFS 详解

摘要: http://hi.baidu.com/jmugis/blog/item/bea9aaf8540cdf0cd8f9fd55.html 阅读全文

posted @ 2012-04-11 16:20 雨渐渐 阅读(295) 评论(0) 推荐(0) 编辑

java ocr

摘要: http://www.cnblogs.com/qxiniu/archive/2010/11/09/1872816.html 阅读全文

posted @ 2012-04-11 16:18 雨渐渐 阅读(161) 评论(0) 推荐(0) 编辑

2012年3月31日

linq 笛卡尔积

摘要: List<string> list_1 = new List<string>(); Enumerable.Range(1, 10).ToList().ForEach(i=>list_1.Add(i.ToString())); var query = from s in list_1 from a in list_1 select s + " " + a; var res = query.ToList(); 阅读全文

posted @ 2012-03-31 15:08 雨渐渐 阅读(431) 评论(0) 推荐(0) 编辑

2012年3月27日

c#控制台相关的设置

摘要: [DllImport("Kernel32.dll")] static extern bool AllocConsole(); [DllImport("Kernel32.dll")] static extern bool FreeConsole(); using System.Runtime.InteropServices;可以实现控制台的隐藏或者显示 阅读全文

posted @ 2012-03-27 17:37 雨渐渐 阅读(205) 评论(0) 推荐(0) 编辑

2012年3月26日

GetHashCode(一)为啥 如何重写

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace HashCode{ class Program { static void Main(string[] args) { //GetHashCode 值 A a1 = new A(1);//1 A a2 = new A(2);//0 A a3 = new A(3);//1 ... 阅读全文

posted @ 2012-03-26 13:54 雨渐渐 阅读(490) 评论(0) 推荐(0) 编辑

各种时间戳及用途

摘要: (一) /// <summary> /// 获得距离1970-01-01的毫秒数 /// </summary> /// <param name="newDate">时间参数</param> /// <returns></returns> public static long GetMilliSecond(DateTime newDate) { DateTime oldDate = new DateTime(1970, 1, 1); // Difference in days, hours, and mi 阅读全文

posted @ 2012-03-26 09:04 雨渐渐 阅读(281) 评论(0) 推荐(0) 编辑

上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 57 下一页

导航