<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[jackfreesiue的专栏]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/jackfreesiue</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; jackfreesiue]]></copyright><item><title><![CDATA[JAVA基础之正则表达式]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8891098</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8891098</guid><author>jackfreesiue</author><pubDate>Mon, 06 May 2013 16:19:21 +0800</pubDate><description><![CDATA[[abc]表示a、b、c中任意一个，也可以写为[a,b,c]，但前一种写法更常见
[^abc]表示除了a、b、c，其他的都可以
[A-z]表示所有的字母
[a-z]表示小写字母
.表示任意字符，但是如果想表示这个位置就是.这个符号，那么就使用转义字符\.（注意java中也有转义字符，所以在java中使用时应该写为\\.）
\d表示数字[0-9]
\D表示非数字[^0-9]
\s表示空]]></description><category></category></item><item><title><![CDATA[JAVA基础篇之枚举]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8862860</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8862860</guid><author>jackfreesiue</author><pubDate>Sun, 28 Apr 2013 12:11:14 +0800</pubDate><description><![CDATA[DK1.5引入了新的类型——枚举。在Java中它虽然算个“小”功能，却给我的开发带来了“大”方便。
用法一：常量
在JDK1.5之前，我们定义常量都是：publicstaticfianl....。现在好了，有了枚举，可以把相关的常量分组到一个枚举类型里，而且枚举提供了比常量更多的方法。
 


Java代码 


public enum Color {    RED, GREEN]]></description><category></category></item><item><title><![CDATA[JAVA基础之配置操作篇]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8853703</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8853703</guid><author>jackfreesiue</author><pubDate>Fri, 26 Apr 2013 11:46:23 +0800</pubDate><description><![CDATA[JDK配置
1.安装JDK。
2.安装完成后，右击“我的电脑”，点击“属性”； 

3.选择“高级”选项卡，点击“环境变量”； 
4.在“系统变量”中，设置3项属性，JAVA_HOME,PATH,CLASSPATH(大小写无所谓),若已存在则点击“编辑”，不存在则点击“新建”；
 5.JAVA_HOME指明JDK安装路径，就是刚才安装时所选择的路径D:/java/jdk1.5.0_08]]></description><category></category></item><item><title><![CDATA[HeadFirst经典收藏二]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/84415452</link><guid>https://blog.csdn.net/jackfreesiue/article/details/84415452</guid><author>jackfreesiue</author><pubDate>Thu, 04 Apr 2013 13:13:02 +0800</pubDate><description><![CDATA[HeadFirst经典]]></description><category></category></item><item><title><![CDATA[HeadFirst经典收藏一]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/84415427</link><guid>https://blog.csdn.net/jackfreesiue/article/details/84415427</guid><author>jackfreesiue</author><pubDate>Thu, 04 Apr 2013 11:01:54 +0800</pubDate><description><![CDATA[HeadFirst经典收藏]]></description><category></category></item><item><title><![CDATA[JAVA基础之概念篇]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8754191</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8754191</guid><author>jackfreesiue</author><pubDate>Wed, 03 Apr 2013 08:59:59 +0800</pubDate><description><![CDATA[单例模式：基于对象的唯一；
静态方法：基于属性和方法的唯一。]]></description><category></category></item><item><title><![CDATA[windows tftp客户端使用方法]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8699296</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8699296</guid><author>jackfreesiue</author><pubDate>Thu, 21 Mar 2013 08:26:52 +0800</pubDate><description><![CDATA[命令模式
在“开始→运行”中输入“CMD”并回车，或是从附件中选择“命令提示符”，然后输入“d：”回车(引号不用输)，这样就切换到D盘了，再输入“cd d:\图像资料”并回车，这时切换到了“d:\图像资料”目录，然后输入命令“Tftp -i 朋友IP get pictures.rar”,如果要传给朋友文件,则输入命令“Tftp -i 朋友IP put 文件名.rar .(windows自带有tf]]></description><category></category></item><item><title><![CDATA[FTP的两种传输模式：BINARY和ASCII]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8696469</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8696469</guid><author>jackfreesiue</author><pubDate>Wed, 20 Mar 2013 14:55:33 +0800</pubDate><description><![CDATA[最近工作中需要构造些数据（windows），然后上传到服务器（linux）上运行，本来在本地已经设置后用linux的newLine符号(\n)但传到服务器上newLine符却变成了(\r\n)，虽然可以用dos2unix，但为什么会把换行符改变呢？找了些资料，发现这和FTP的传输模式有关，如下：
FTP有两种传输模式：BINARY和ASCII
BINARY模式
复制时保留文件的位序，逐位拷贝]]></description><category></category></item><item><title><![CDATA[TFTP协议学习笔记]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8694945</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8694945</guid><author>jackfreesiue</author><pubDate>Wed, 20 Mar 2013 09:55:56 +0800</pubDate><description><![CDATA[这是我学习TFTP协议时的一些笔记，做备忘用。
1 TFTP(Trivial File Transfer Protocal)即简单文件传输协议，最初用于无盘系统（比如X终端）的引导。TFTP设计的主要目标是简单短小，能够在只读存储器上存储。TFTP的正式规范是RFC 1350 [1992]。
2 TFTP是基于UDP实现的，不过似乎也有TCP上的实现。TFTP支持五种类型的包，包括：]]></description><category></category></item><item><title><![CDATA[myeclipse8.0安装SVN插件]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8686556</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8686556</guid><author>jackfreesiue</author><pubDate>Mon, 18 Mar 2013 12:17:17 +0800</pubDate><description><![CDATA[安装subclipse, SVN 插件 
1、从官网下载site-1.6.9.zip文件,网址是:subclipse.tigris.org, 

2、从中解压出features与plugins文件夹，复制到E:\MyEclipse\myPlugin\svn里面，其它的*.xml文件不要。 

3、在E:\MyEclipse\MyEclipse8.5\dropins下新建文件svn.lin]]></description><category></category></item><item><title><![CDATA[HeadFirst Jquery 学习笔记之jQuery and Ajax]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8637783</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8637783</guid><author>jackfreesiue</author><pubDate>Tue, 05 Mar 2013 15:28:27 +0800</pubDate><description><![CDATA[Ajax
1.请求数据来实现局部刷新update small pieces of the page with the information from the server，without having to reload the page.
2.提供了表单之外提交请求的另外一种途径。表单提交请求返回的是整个HTML页面，Ajax提交请求返回的是部分数据。
3.不用刷新页面或者其他操作，背后]]></description><category></category></item><item><title><![CDATA[HeadFirst Jquery 学习笔记（三）]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8634926</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8634926</guid><author>jackfreesiue</author><pubDate>Tue, 05 Mar 2013 14:17:11 +0800</pubDate><description><![CDATA[存储方式有三种
1. var a = 42;单个变量
2. var v = [2, 3, 4];数组存储
3. planeObject={ 
  engines:"4", 
  type:"passenger",
  propellor: "No"}; 对象存储
对象的创建
对象拥有属性和方法
利用var声明一个对象myCountry
var myCountry = {]]></description><category></category></item><item><title><![CDATA[Head First Jquery学习笔记（二）]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8620388</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8620388</guid><author>jackfreesiue</author><pubDate>Thu, 28 Feb 2013 09:16:04 +0800</pubDate><description><![CDATA[第四章  操作DOM
elements遍历（traverse）、可以删除（remove或者detach）、替换（replacewith）、插入（insert）



1.traverse
dom本身是树结构，可以遍历，有三种操作：
climb up：$(".fish").parent()、$(".fish").parent().parent()
climb down：$(".men]]></description><category></category></item><item><title><![CDATA[Head First Jquery学习笔记（一）]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8617295</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8617295</guid><author>jackfreesiue</author><pubDate>Thu, 28 Feb 2013 08:19:45 +0800</pubDate><description><![CDATA[1.DOM是web页面隐藏的骨架，就像人体X-射线一样。
2.借助DOM，HTML、CSS及JS互相作用。
第二章  selector and method
Grab and go！
Jquery选择element的方式与CSS一样。
CSS选择elements为其增加style，Jquery选择elements为其增加行为（behavior）。query就是通过选择器查询，JS解释器通]]></description><category></category></item><item><title><![CDATA[设计模式——工厂模式]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/8609777</link><guid>https://blog.csdn.net/jackfreesiue/article/details/8609777</guid><author>jackfreesiue</author><pubDate>Mon, 25 Feb 2013 15:34:25 +0800</pubDate><description><![CDATA[1.简单工厂
用来生产同一等级结构中的任意产品


2.工厂方法
用来生产同一等级结构中的固定产品


3.抽象工厂
用来生产不同产品族的全部产品]]></description><category></category></item><item><title><![CDATA[Java设计模式]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/84393056</link><guid>https://blog.csdn.net/jackfreesiue/article/details/84393056</guid><author>jackfreesiue</author><pubDate>Thu, 21 Feb 2013 09:09:02 +0800</pubDate><description><![CDATA[1.观察者模式（subject/observer）
publisher+subscribers=observer pattern
类似报纸的发行与订阅业务，一家发行，多家订阅，形成一对多的关系，数据与信息要从发行端推送到订阅端，订阅端实现数据更新。...]]></description><category></category></item><item><title><![CDATA[JAVA序列化]]></title><link>https://blog.csdn.net/jackfreesiue/article/details/84393050</link><guid>https://blog.csdn.net/jackfreesiue/article/details/84393050</guid><author>jackfreesiue</author><pubDate>Thu, 21 Feb 2013 09:01:22 +0800</pubDate><description><![CDATA[序列化的意思是将Java对象保存成文件（.ser）然后恢复成原来的对象。类若要序列化，需实现serialize接口。

如果某实例变量不能或者不应该被序列化，就把它标记为transient（瞬时）的，序列化程序会把它跳过。...]]></description><category></category></item></channel></rss>