﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>语源科技BlogJava-freefly</title><link>http://www.blogjava.net/freefly/</link><description>一门技术，如果不能讲出来，那么就是没有理解，如果不能很好的讲出来,那么就是理解不够透彻！</description><language>zh-cn</language><lastBuildDate>Sun, 12 Apr 2026 06:01:35 GMT</lastBuildDate><pubDate>Sun, 12 Apr 2026 06:01:35 GMT</pubDate><ttl>60</ttl><item><title>生活感触</title><link>http://www.blogjava.net/freefly/archive/2007/01/16/94208.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Tue, 16 Jan 2007 05:56:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2007/01/16/94208.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/94208.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2007/01/16/94208.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/94208.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/94208.html</trackback:ping><description><![CDATA[1。我们可以做一个平凡的人，但决不能做一个平庸的人<br />2。给生活一个笑脸，生活会给你一个太阳<br />3。路漫漫其修远兮，情深深且珍惜<br /><img src ="http://www.blogjava.net/freefly/aggbug/94208.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2007-01-16 13:56 <a href="http://www.blogjava.net/freefly/archive/2007/01/16/94208.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>some differences between oracle and sqlserver</title><link>http://www.blogjava.net/freefly/archive/2006/12/31/91180.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Sun, 31 Dec 2006 07:42:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/12/31/91180.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/91180.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/12/31/91180.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/91180.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/91180.html</trackback:ping><description><![CDATA[<ol>
    <li><font color=#3333ff size=5>create view</font> </li>
</ol>
<p><font size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ORACLE:&nbsp;&nbsp;&nbsp; CREATE OR REPLACE VIEW V_FA_ADD_CO AS<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;SQLSEVER:&nbsp;&nbsp;&nbsp;&nbsp;IF EXISTS&nbsp;(SELECT 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FROM&nbsp; sysobjects<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;WHERE&nbsp; idobject_id&nbsp;('V_FA_ADD_CO')<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; AND&nbsp;&nbsp; type = 'V')<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;DROP VIEW&nbsp;V_FA_ADD_CO;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;CREATE VIEW V_FA_ADD_CO AS<br><br><font color=#0000ff>&nbsp;&nbsp;&nbsp;&nbsp; </font></font><font color=#0000ff size=5>2.&nbsp;the equal between join and (+)<br></font><font size=2><font size=3><font color=#3333ff size=5>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><font size=4>&nbsp;&nbsp;&nbsp;&nbsp;<font color=#000000>&nbsp;&nbsp;&nbsp;the table(its fields stay with (+)) right&nbsp; join&nbsp;another&nbsp; corresponding&nbsp;&nbsp; table. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for example: select * from a,b where a.id=b.id(+)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;equals&nbsp; select * from b rigth join a on a.id=b.id<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; equals&nbsp; select * from a left join a on a.id=b.id<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; notes:join先匹配有对应的记录，<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; （＋）却是按顺序来的</font></font></font>&nbsp;<br><br><font color=#0000ff><font size=2>&nbsp;&nbsp;&nbsp; </font><font size=5>3.&nbsp;substr,substring<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font></font><font color=#000000 size=4>for example: there is a table's field "userName" and it's value is "wanghuiling".<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sqlserver: substring(userName,0,4) = "wan",substring(userName,1,4) = "wang"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oracle:&nbsp; substr(userName,0,4)="wang",substr(userName,1,4)="wang"<br><font color=#0000ff><font size=2>&nbsp;&nbsp;&nbsp; </font><font size=5><br>&nbsp;4.&nbsp;link sign<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=#000000 size=4>sqlserver:&nbsp;"+"</font><br>&nbsp;&nbsp;&nbsp;&nbsp; </font></font><font color=#000000 size=4>oracle:"||"<br>&nbsp;<br><font color=#0000ff size=5>5.&nbsp;update a table's some fields<br></font><br>&nbsp;&nbsp;&nbsp;&nbsp; for&nbsp;example:there are two tables:&nbsp;students1 and students2<br><br>&nbsp;&nbsp;&nbsp;&nbsp; sqlserver:update students&nbsp;&nbsp;&nbsp;&nbsp; (can't use alias)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set name=s2.name,sex=s2.sex,age=s2.age,tel=s2.tel<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; from students s2 where s1.id=s2.id;<br>&nbsp;&nbsp;&nbsp;&nbsp; oracle: update students1 s1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set (name,sex,age,tel)=<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (select name,sex,age,tel from students2 s2 where s1.id=s2.id);<br><br><font color=#0000ff size=5>6.&nbsp;Date<br>&nbsp;&nbsp;&nbsp;&nbsp;<font color=#000000 size=4>for&nbsp;example:there are&nbsp;a field of&nbsp; date type:input_date&nbsp; and its value is 2007-08-09.</font>&nbsp;&nbsp;&nbsp;<br>&nbsp;&nbsp; &nbsp;<font color=#000000 size=4>sqlserver : year(input_date)=2007,month(input_date)=8,day(input_date)=9<br>&nbsp;&nbsp;&nbsp;&nbsp; oracle : to_char(input_date,'YYYY')=2007, to_char(input_date,'MM')=8, to_char(input_date,'DD')=9<br><br>&nbsp;&nbsp;&nbsp;&nbsp; sDate&nbsp;: a java String variable<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=#000000 size=4>sqlserver : input_date = '"+sDate+"'&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp; oracle :&nbsp;input_date = &nbsp;to_char( '" + sDate + "',' 'YYYY-MM-DD'')</font></font></font></font></font></font></font></p>
  <img src ="http://www.blogjava.net/freefly/aggbug/91180.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-12-31 15:42 <a href="http://www.blogjava.net/freefly/archive/2006/12/31/91180.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>growing in depressed mood</title><link>http://www.blogjava.net/freefly/archive/2006/04/11/40435.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Tue, 11 Apr 2006 04:41:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/04/11/40435.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/40435.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/04/11/40435.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/40435.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/40435.html</trackback:ping><description><![CDATA[		<p>&#160;&#160;&#160;&#160;&#160;&#160;Ultimatelly,I solved my problem.&#160;&#160; &#160;My work is switch my application from mysql to sqlserver database&#160;.&#160;&#160; At the very start,I forgot start sqlserver service,so the error "refused connect"&#160; always&#160;appear,(so stupid error).Next,ther error &#160;"Hibernate operation: could not execute query; uncategorized SQLException for SQL [select user0_.ID as ID, user0_.USERNAME as USERNAME0_, user0_.PASSWORD as PASSWORD0_ from user user0_]; SQL state [S1000]; error code [156]; 在关键字 'user' 附近有语法错误。; nested exception is java.sql.SQLException: 在关键字 'user' 附近有语法错误."&#160;&#160; comes out ,&#160; the problem scratchs my head over&#160;.this moring i got&#160;one friend's help and eventually found the "user" should not be used as a table name,because "user" is a key in sqlserver.&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;<font style="BACKGROUND-COLOR: #ff1493"> Below is work I have done :&#160;(Note: my env is eclipse+myeclipse)<br /><font style="BACKGROUND-COLOR: #ffffff">&#160;&#160;&#160;&#160;&#160;</font> First:modify applicationContext.xml:<br /></font>&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;<font style="BACKGROUND-COLOR: #ff1493">From:</font><br />&#160;&#160;&#160;&#160;&#160;&#160;1.&lt;bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;property name="driverClassName"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;value&gt;com.mysql.jdbc.Driver&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &lt;property name="url"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;value&gt;jdbc:mysql://localhost:3306/test&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &#160;&lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;property name="username"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;value&gt;root&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;property name="password"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;value&gt;whl&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &#160;&lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;/bean&gt;<br />&#160;&#160;&#160;&#160; 2.&#160;&lt;prop key="hibernate.dialect"&gt;<font color="#000000">org</font>.hibernate.dialect.MySQLDialect&lt;/prop&gt;<br />&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160; <font color="#ff1493">&#160;</font><font style="BACKGROUND-COLOR: #ff1493" color="#ff1493"><font color="#000000">To:</font><br /></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;property name="driverClassName"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;value&gt;net.sourceforge.jtds.jdbc.Driver&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&lt;property name="url"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;value&gt;jdbc:jtds:sqlserver://localhost:1433/test&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&lt;property name="username"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&lt;value&gt;sa&lt;/value&gt; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;property name="password"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&lt;value&gt;mssqlsys&lt;/value&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&lt;/property&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;/bean&gt;<br /><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;prop key="hibernate.dialect"&gt;org.hibernate.dialect.SQLServerDialect&lt;/prop&gt;<br />&#160;&#160;&#160;&#160;&#160; <font style="BACKGROUND-COLOR: #ff1493">Second: import the sqlserver driver:jtds-1.1.jar</font><br /></p>
 <img src ="http://www.blogjava.net/freefly/aggbug/40435.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-04-11 12:41 <a href="http://www.blogjava.net/freefly/archive/2006/04/11/40435.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Config Struts-menu  in application</title><link>http://www.blogjava.net/freefly/archive/2006/04/05/39389.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Wed, 05 Apr 2006 07:23:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/04/05/39389.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/39389.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/04/05/39389.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/39389.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/39389.html</trackback:ping><description><![CDATA[		<ol>
				<li>Background </li>
		</ol>
		<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Usually,When we develop our web application,we need create menu.We can use Javascript to design web menu,but if thus,we have to compile many codes,and our application hasn't good&#160; revisability and maintainability&#160;.Struts-menu provides us a convenient web menu design way,we can put our&#160;web&#160;menu data in&#160;&#160;a menu-config.xml configuration file,and read the data with struts-menu lable.<br /><br />&#160;&#160; 2.&#160;&#160;Struts&#160;&#160;Menu Example<br />&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;You can go here <a href="http://demo.raibledesigns.com/struts-menu/">http://demo.raibledesigns.com/struts-menu/</a>&#160;to see the example;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;Or&#160;download the example application :struts-menu-2.3.zip,follow the below instruction:&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;Unzip it to a local directory.&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Download and install&#160;Tomcat or another Java Servlet container.&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;Put struts-menu.war in Tomcat's webapps folder and start the server.&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Go to <a class="externalLink" title="External Link" href="http://localhost:8080/navigator">http://localhost:8080/struts-menu</a>&#160;<br /><br />&#160;3. &#160; Integrating Struts Menu into your application<br /><br />&#160;&#160;&#160;&#160;&#160;&#160;1.&#160; Place struts-menu-2.3.jar into your app's WEB-INF/lib directory.(maybe you also need put common-lang.jar)<br />&#160;&#160;&#160;&#160;&#160; 2.&#160;&#160;Place&#160;struts-menu.tld,and struts-menu-el.tld into your app's WEB-INF directory<br />&#160;&#160;&#160;&#160;&#160; 3.&#160; Copy&#160;the common,images,scripts,template,styles directory from&#160;the&#160;above&#160;struts-menu.war exmaple application&#160; to&#160;your web directory.(if use&#160;Myeclipse,put those directorys in webroot directory)<br />&#160;&#160;&#160;&#160;&#160; 4.&#160; Add the plug-in settings to your struts-config.xml file.&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; &lt;plug-in className="net.sf.navigator.menu.MenuPlugIn"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;set-property property="menuConfig"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; value="/WEB-INF/menu-config.xml"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/plug-in&gt;<br />&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;5.&#160; You will need to declare your menu's attributes in a your App /WEB-INF/menu-config.xml file.Here's&#160;&#160;a short&#160; snippet of what might look like:&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;<font face="Times New Roman">&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;Menu name="contactMenu" title="Contact" location="?Contact"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;Item name="email" title="E-Mail" location="?EMail"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;Item name="phone" title="Phone" location="?Phone"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/Menu&gt;<br /></font><font color="#000000"><font face="Times New Roman">&#160;&#160;&#160;&#160;</font><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<font face="Times New Roman"> 6.&#160;&#160; Add a taglib declaration to the top of your JSP:&#160;<br /></font><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font face="Times New Roman">&lt;%@ taglib uri="http://struts-menu.sf.net/tag" prefix="menu" %&gt;<br /><br />&#160;&#160;&#160;&#160;&#160;&#160; &#160;7.&#160; Add taglib code to render your menu in your JSP:&#160;<br /></font><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;<font face="Times New Roman">&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;menu:useMenuDisplayer name="TabbedMenu"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160; bundle="org.apache.struts.action.MESSAGE"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;menu:displayMenu name="Home"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;menu:displayMenu name="About"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;/menu:useMenuDisplayer&gt;</font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;<font face="Times New Roman"><br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160; &#160;&#160; 8.&#160; Below is a whole test.jsp<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;%@ page contentType="text/html; charset=UTF-8" %&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;%@ taglib uri="<a href="http://struts.apache.org/tags-html">http://struts.apache.org/tags-html</a>" prefix="html" %&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;%@ taglib uri="<a href="http://struts-menu.sf.net/tag">http://struts-menu.sf.net/tag</a>" prefix="menu" %&gt; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;html:html&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;head&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;html:base /&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;title&gt;menu&lt;/title&gt;<br />&#160;&#160;&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;</font><br />&#160;&#160;&#160;&#160;&#160;&#160;</font>&#160;&#160;&#160;&#160;&#160;&#160;<font face="Times New Roman" color="#000000">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;link rel="stylesheet" type="text/css" media="screen"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;href="styles/global.css" /&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;link rel="stylesheet" type="text/css" media="screen"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; href="styles/coolmenu.css" /&gt;<br />&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;script type="text/javascript" src="scripts/coolmenus4.js"&gt;&lt;/script&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;script type="text/javascript" src="scripts/cm_addins.js"&gt;&lt;/script&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;/head&gt;<br />&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;body&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;script type="text/javascript" src="scripts/coolmenu4-config.js"&gt;&lt;/script&gt;&#160;<br />&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&lt;menu:useMenuDisplayer name="CoolMenu4"<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; bundle="org.apache.struts.action.MESSAGE"&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;menu:displayMenu name="Home"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&lt;menu:displayMenu name="About"/&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;/menu:useMenuDisplayer&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160; &lt;/body&gt;<br />&#160;&#160;&#160;&#160;&#160;&#160; &lt;/html:html&gt;<br /><br /><br /><br /><br /><br /><br /></font><br /></p>
		<p>
				<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p>
 <img src ="http://www.blogjava.net/freefly/aggbug/39389.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-04-05 15:23 <a href="http://www.blogjava.net/freefly/archive/2006/04/05/39389.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>solution for mess code in struts+spring+hibernate+mysql4.1 </title><link>http://www.blogjava.net/freefly/archive/2006/03/23/37026.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Thu, 23 Mar 2006 05:07:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/03/23/37026.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/37026.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/03/23/37026.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/37026.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/37026.html</trackback:ping><description><![CDATA[<p dir="ltr" style="margin-right: 0px" align="left">&nbsp;Here is my solution for&nbsp; mess code on page,hope this can help you!<br />
&nbsp;The point is&nbsp;your database coding&nbsp;should be&nbsp;consistent with the coding of&nbsp; character that you plan to insert into the database.<br />
&nbsp;Attention:&nbsp;Here,I&nbsp;take "UTF-8" as default character coding way&nbsp;.<br />
&nbsp;There are&nbsp;three steps:<br />
&nbsp;1. set page charset&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp; e.g&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;%@ page language="java" contentType="text/html; charset=UTF-8" %&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;2. create character filter:<br />
&nbsp;&nbsp;&nbsp;&nbsp; package com.victory.util;</p>
<p dir="ltr" style="margin-right: 0px">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;import javax.servlet.http.HttpServlet;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import javax.servlet.Filter;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;import javax.servlet.FilterConfig;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import javax.servlet.ServletException;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import javax.servlet.ServletRequest;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import javax.servlet.ServletResponse;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import javax.servlet.FilterChain;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import javax.servlet.http.*;<br />
&nbsp;&nbsp;&nbsp;&nbsp; import java.io.IOException;<br />
&nbsp; &nbsp;&nbsp; public class CharacterEncodingFilter<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;extends HttpServlet<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; implements Filter {</p>
<p dir="ltr" style="margin-right: 0px" align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;private FilterConfig filterConfig;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;private String targetEncoding = "ASCII";</p>
<p dir="ltr" style="margin-right: 0px" align="left">&nbsp;&nbsp; &nbsp; /**<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;* Called by the web container to indicate to a filter that it is being placed<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; * into service.<br />
&nbsp;&nbsp;&nbsp; &nbsp; *<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;* @param filterConfig FilterConfig<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;* @throws ServletException<br />
&nbsp;&nbsp;&nbsp; &nbsp; * @todo Implement this javax.servlet.Filter method<br />
&nbsp;&nbsp;&nbsp;&nbsp; */<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;public void init(FilterConfig filterConfig) throws ServletException {<br />
&nbsp;&nbsp; &nbsp;&nbsp; this.filterConfig = filterConfig;<br />
&nbsp;&nbsp;&nbsp; &nbsp; this.targetEncoding = filterConfig.getInitParameter("encoding");<br />
&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p dir="ltr" style="margin-right: 0px" align="left">&nbsp;&nbsp;&nbsp; /**<br />
&nbsp;&nbsp;&nbsp;&nbsp; * The &lt;code&gt;doFilter&lt;/code&gt; method of the Filter is called by the container<br />
&nbsp;&nbsp;&nbsp; &nbsp;* each time a request/response pair is passed through the chain due to a<br />
&nbsp;&nbsp;&nbsp;&nbsp; * client request for a resource at the end of the chain.<br />
&nbsp;&nbsp;&nbsp; &nbsp;*<br />
&nbsp;&nbsp; &nbsp; * @param request ServletRequest<br />
&nbsp;&nbsp; &nbsp; * @param response ServletResponse<br />
&nbsp;&nbsp;&nbsp; &nbsp;* @param chain FilterChain<br />
&nbsp;&nbsp; &nbsp; * @throws IOException<br />
&nbsp; &nbsp;&nbsp; * @throws ServletException<br />
&nbsp;&nbsp; &nbsp; * @todo Implement this javax.servlet.Filter method<br />
&nbsp;&nbsp; &nbsp; */<br />
&nbsp;&nbsp; &nbsp; public void doFilter(ServletRequest srequest, ServletResponse sresponse,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FilterChain chain) throws IOException, ServletException {<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;try {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; HttpServletRequest request = (HttpServletRequest) srequest;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; request.setCharacterEncoding(targetEncoding);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;chain.doFilter(srequest, sresponse);<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;catch (ServletException sx) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; filterConfig.getServletContext().log(sx.getMessage());<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; }<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch (IOException iox) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; filterConfig.getServletContext().log(iox.getMessage());<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;}<br />
&nbsp;&nbsp;&nbsp; &nbsp; }</p>
<p dir="ltr" style="margin-right: 0px" align="left">&nbsp;&nbsp; &nbsp;/**<br />
&nbsp;&nbsp;&nbsp; &nbsp;* Called by the web container to indicate to a filter that it is being taken<br />
&nbsp;&nbsp;&nbsp; &nbsp;* out of service.<br />
&nbsp;&nbsp;&nbsp;&nbsp; *<br />
&nbsp;&nbsp;&nbsp; &nbsp;* @todo Implement this javax.servlet.Filter method<br />
&nbsp;&nbsp;&nbsp; &nbsp;*/<br />
&nbsp;&nbsp;&nbsp; &nbsp;public void destroy() {<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; filterConfig = null;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; targetEncoding = null;<br />
&nbsp;&nbsp;&nbsp; &nbsp;}<br />
&nbsp; }<br />
&nbsp;&nbsp;<br />
&nbsp;&nbsp;<strong>3.config web.xml<br />
&nbsp;&nbsp;&nbsp;&nbsp;attention:&nbsp;add these to your web.xml<br />
</strong>&nbsp;&nbsp;&nbsp;&nbsp; &lt;filter&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;filter-name&gt;EncodingFilter&lt;/filter-name&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;filter-class&gt;com.victory.util.CharacterEncodingFilter&lt;/filter-class&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;init-param&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param-name&gt;encoding&lt;/param-name&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;param-value&gt;UTF-8&lt;/param-value&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp; &lt;/init-param&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;/filter&gt;<br />
&nbsp;&nbsp; &nbsp;&lt;filter-mapping&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;EncodingFilter&lt;/filter-name&gt;<br />
&nbsp;&nbsp;&nbsp; &nbsp;&lt;url-pattern&gt;/*&lt;/url-pattern&gt;<br />
&nbsp;&nbsp;&nbsp; &lt;/filter-mapping&gt;&nbsp;<br />
&nbsp;<strong>&nbsp;4.set database configration</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp; modify the file:&nbsp;&nbsp;&nbsp; my.ini<br />
&nbsp;&nbsp;&nbsp;&nbsp; [client]&nbsp;&nbsp;&nbsp;&nbsp; default-character-set=utf8&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp; [mysqld]&nbsp; default-character-set=utf8<br />
<strong>&nbsp;&nbsp;5.restart Mysql server<br />
&nbsp; 6.modified your table&nbsp;coding&nbsp;way to utf8</strong><br />
&nbsp;&nbsp;&nbsp;&nbsp; <strong>or ceate your table like this :<br />
</strong>&nbsp;&nbsp;&nbsp;&nbsp; CREATE TABLE `user` (<br />
&nbsp;&nbsp; &nbsp;`ID` int(11) NOT NULL auto_increment,<br />
&nbsp;&nbsp;&nbsp; `USERNAME` varchar(50) NOT NULL default '',<br />
&nbsp;&nbsp; &nbsp;`PASSWORD` varchar(50) NOT NULL default '',<br />
&nbsp; &nbsp; &nbsp;PRIMARY KEY&nbsp; (`ID`)<br />
&nbsp;&nbsp;&nbsp; &nbsp;) ENGINE=MyISAM DEFAULT CHARSET=utf8;&nbsp;<br />
&nbsp; <strong>7.restrart your tomcat sever<br />
<br />
&nbsp; &nbsp;OK,it's all.<br />
<br />
&nbsp;&nbsp; Authrougn I have sovled&nbsp;&nbsp;&nbsp;my problem, I think I&nbsp;&nbsp;don't have&nbsp;enough understanding for it,&nbsp;&nbsp;So hope&nbsp;&nbsp;&nbsp; communicate&nbsp;with you!&nbsp;<br />
<br />
&nbsp; &nbsp;Attention:mess code also exist in your database,through page hasn't mess code.</strong>&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
<p dir="ltr" style="margin-right: 0px"><br />
&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
<img src ="http://www.blogjava.net/freefly/aggbug/37026.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-03-23 13:07 <a href="http://www.blogjava.net/freefly/archive/2006/03/23/37026.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Myeclipse's registration generator</title><link>http://www.blogjava.net/freefly/archive/2006/03/20/36299.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Mon, 20 Mar 2006 05:10:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/03/20/36299.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/36299.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/03/20/36299.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/36299.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/36299.html</trackback:ping><description><![CDATA[Althrough I provided this resource,I hope everyone use original software!<br /><br /><br />MyEclipse 3.8.x 以上版本 <a href="/Files/oksonic/MyEclipse_key3.x.rar"><font color="#8d8c8c">点这里下载</font></a>&#160; 请选择3.6版本，虽说是3.6的注册机，可以3.8.x的所有版本都可以使用<br /><br />MyEclipse 4.0 以上版本 <a href="/Files/oksonic/MyEclipseKeyGen4.X.rar"><font color="#8d8c8c">点这里下载</font></a><br /> <img src ="http://www.blogjava.net/freefly/aggbug/36299.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-03-20 13:10 <a href="http://www.blogjava.net/freefly/archive/2006/03/20/36299.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>有一种...</title><link>http://www.blogjava.net/freefly/archive/2006/03/20/36284.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Mon, 20 Mar 2006 04:33:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/03/20/36284.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/36284.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/03/20/36284.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/36284.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/36284.html</trackback:ping><description><![CDATA[ <font color="#008000"><strong>飞飞飞 飞飞 飞飞飞飞飞飞飞</strong> </font>                                         <br />                                                <br />                                               <font color="#ffa500"> <strong><font face="Courier New" color="#008000">有</font></strong>一种向往，让心自由飞翔；</font><br />                                                            <br />                                              <font color="#008000"><strong>有</strong>一种生活，别人不能理解；                       <strong><font style="BACKGROUND-COLOR: #ffffff">飞</font></strong></font><br />                                                                                                                     <font color="#008000"><strong>飞</strong><br /></font>                                             <font color="#800080"><strong><font color="#008000">有</font></strong>一种孤独，永远无法弥补；</font>             <font color="#008000"><strong>飞</strong><br /></font>                                                                                                         <font color="#008000"><font color="#008000"><strong>飞</strong></font><br /></font>                                            <font color="#ee82ee"><strong><font color="#008000">有</font></strong>一种悲伤，宁愿独自享受；</font><strong><font color="#008000">飞</font><br /></strong>                                                                                                         <font color="#ffff00"><font color="#008000"><strong>飞</strong></font><br /></font>                                                <font color="#a52a2a"><strong><font color="#008000">有</font></strong>一种心境，只愿音乐相伴；</font>           <font color="#006400"><strong>飞</strong><br /></font>                                                                                                                       <font color="#008000"><strong>飞</strong></font><br />                                                     <font color="#deb887"><strong><font color="#008000">有</font></strong>一种情感，让人难以割舍;                      </font><font color="#008000"><strong>飞<br /></strong></font>                                                                                              <br />                                                              <font color="#000080"><strong><font color="#008000">有</font></strong>一种责任，让我渐渐长大；</font>                                  <strong><font color="#008000">飞</font><br /></strong>                                                                                                                                                 <font style="BACKGROUND-COLOR: #ffffff" color="#008000"><strong>飞</strong><br /></font>                                                                      <font color="#ff0000"> <strong><font color="#008000">有</font></strong>一种爱情，渴望能永远永远。</font>             <font color="#008000"><strong>飞</strong></font><br />                                                                                                                                        <font color="#008000"><strong>飞</strong><br /></font>                                                                                 <font color="#008000"><strong>飞</strong>飞飞飞飞飞飞飞飞飞飞飞飞<strong>飞</strong></font>            <img src ="http://www.blogjava.net/freefly/aggbug/36284.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-03-20 12:33 <a href="http://www.blogjava.net/freefly/archive/2006/03/20/36284.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>New years's  wishes</title><link>http://www.blogjava.net/freefly/archive/2006/03/20/36239.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Mon, 20 Mar 2006 02:46:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/03/20/36239.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/36239.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/03/20/36239.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/36239.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/36239.html</trackback:ping><description><![CDATA[
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 12pt; COLOR: #a040ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">Dear guy:</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /?>
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">        <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">       <span style="COLOR: #80c0ff"></span></span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">The new year is coming,</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        we are looking forward to it.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        New year,new start.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        New year,new look.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        New year,new breath.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        New year,everything is fresh.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt"> <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        Please say "bye" to the old year,   </span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        draw a full stop on the past unhappiness.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        value everything you'v owned.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        Please say "hi" to the new year.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        give a smile face to the world,</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        a new world is waiting for your coming.       </span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt"> <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        LIke a wild untilled land,</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        please endow this new year with your passion and imagination.</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        </span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; COLOR: #ff7f00; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">        And here,i send my best wishes to you,</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">              <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 13.5pt; COLOR: #8000ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">                Merry christmas!</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 13.5pt; COLOR: #8000ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">                Happy new year!</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 13.5pt; COLOR: #8000ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">                Live a happy life!</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 13.5pt; COLOR: #8000ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">     </span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">         </span>
				<span lang="EN-US" style="FONT-SIZE: 12pt; COLOR: #bf00bf; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">And say "thanks for your giving" from the bottom  of my heart!</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">  <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">         <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">                                                                                             <o:p></o:p></span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">                                                                                             </span>
				<span lang="EN-US" style="FONT-SIZE: 12pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">  <span style="COLOR: #a040ff">Y</span></span>
				<span lang="EN-US" style="FONT-SIZE: 12pt; COLOR: #a040ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">ours</span>
				<span lang="EN-US" style="FONT-SIZE: 12pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt"> </span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">
						<o:p>
						</o:p>
				</span>
		</p>
		<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: left; mso-pagination: widow-orphan" align="left">
				<span lang="EN-US" style="FONT-SIZE: 12pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt">                                                                                                </span>
				<span lang="EN-US" style="FONT-SIZE: 12pt; COLOR: #a040ff; FONT-FAMILY: 'Comic Sans MS'; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">xiaoling</span>
				<span lang="EN-US" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; mso-font-kerning: 0pt"> <o:p></o:p></span>
		</p>
<img src ="http://www.blogjava.net/freefly/aggbug/36239.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-03-20 10:46 <a href="http://www.blogjava.net/freefly/archive/2006/03/20/36239.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Uderstanding character coding</title><link>http://www.blogjava.net/freefly/archive/2006/03/20/36233.html</link><dc:creator>freefly</dc:creator><author>freefly</author><pubDate>Mon, 20 Mar 2006 02:42:00 GMT</pubDate><guid>http://www.blogjava.net/freefly/archive/2006/03/20/36233.html</guid><wfw:comment>http://www.blogjava.net/freefly/comments/36233.html</wfw:comment><comments>http://www.blogjava.net/freefly/archive/2006/03/20/36233.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/freefly/comments/commentRss/36233.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/freefly/services/trackbacks/36233.html</trackback:ping><description><![CDATA[		<p>&#160;&#160;&#160;&#160;&#160; Character coding has some ways,just as "ASCII","GB2312","GBK","UTF-8","UTF-16","ISO-8859-1",and so on.Next I simply introduce these coding way I mentioned.<br />&#160;&#160;&#160;&#160;&#160; "ASCII" is a good English Character coding way that created by ANSI(The American National Standards Institute ),but it is not available for most other charcter aggregation.So many years different &#160;country uses&#160;different technology to&#160;process the communication of &#160;different character collections.therefore,"GBK","GB2312" .etc.come out."GBK" and "GB2312"&#160; appear just for Chinese."GBK" is a simplified chinese coding method,and "GBK" has little more wide use-range than "GB2312" ,it&#160;can be used in complicated chinese,Japanese,Korea.As internationalization is coming,we have to consider a kind of universal character coding way.Next,"Unicode" comes into&#160;the world."Unicode"<br />Unicode has started to replace ASCII, ISO 8859 and EUC at all levels.It enables users to handle not only practically any script and language used on this planet, it also supports a comprehensive set of mathematical and technical symbols to simplify scientific information exchange. </p>
  <img src ="http://www.blogjava.net/freefly/aggbug/36233.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/freefly/" target="_blank">freefly</a> 2006-03-20 10:42 <a href="http://www.blogjava.net/freefly/archive/2006/03/20/36233.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>