[置顶] 程序员学习指南

摘要: 引用自:http://www.cnblogs.com/jianlinglo/archive/2009/01/13/1374700.html http://www.asp.net/ http://www.csharphelp.com/ http://mvp.cnblogs.com/ http://www.w3school.com.cn/ http://www.javaeye.com/ http://... 阅读全文

posted @ 2009-04-25 23:12 terancs 阅读(291) 评论(0) 推荐(0) 编辑

2009年5月10日

Java连接mysql(Eclipse中)

摘要: import java.sql.*;public class mySqlConnection { public void show() { String url = "jdbc:mysql://localhost:3306/test"; String username = "root"; String password = "123456"; Connection connection; Stat... 阅读全文

posted @ 2009-05-10 15:56 terancs 阅读(777) 评论(0) 推荐(0) 编辑

2009年5月6日

Java API 全集

摘要: 引用自:http://hi.baidu.com/kfind/blog/item/db5be23da25e2bc29f3d628d.htmlJ2SE DK & API下载-------------------------http://java.sun.com/j2se/1.3/download.htmlhttp://java.sun.com/j2se/1.4.2/download.htmlh... 阅读全文

posted @ 2009-05-06 17:33 terancs 阅读(429) 评论(0) 推荐(0) 编辑

Java 中如何读取环境变量

摘要: //引用自:http://topic.csdn.net/t/20020318/12/583112.htmlimport java.io.BufferedReader;import java.io.InputStreamReader;public class enviormentPath {public static void SYS_CmdExec(String cmdline) { try ... 阅读全文

posted @ 2009-05-06 17:02 terancs 阅读(965) 评论(0) 推荐(0) 编辑

2009年4月27日

C#中#region,#if的作用

摘要: #region #endregion 作用:折叠并隐藏代码 #if #else #endif 作用:控制编译的代码 例如: #if(condition) 代码A #else 代码B #endif 如果condition为真,则程序编译的时候只编译代码A,如果condition为... 阅读全文

posted @ 2009-04-27 11:19 terancs 阅读(1341) 评论(0) 推荐(2) 编辑

2009年4月25日

C#分割字符串

摘要: using System.Text.RegularExpressions; e.g. 除去字符串"Hi, Boy. This is a test. said by Boyson, two months ago."中的字符串"Boyson" String test = "Hi, Boy. This is a test. said by Boysome, two mon... 阅读全文

posted @ 2009-04-25 23:22 terancs 阅读(385) 评论(0) 推荐(0) 编辑

导航