我的也是啊,用ip生成的cn,也是用ip訪問,還是報這個錯誤啊
謝謝,也給我發份吧。sallylin_427@163.com
給我一份吧.麻煩你了.謝謝;
jihuazhen1987@live.cn
因為是在初級的學習階段,不能將板塊進行很好的整合~~可以將源碼打包發下么謝謝哦 郵箱568008762@qq.com
kelly_zsl@sina.com
我也要一份,謝謝!那個我寫錯了
kelly_zsl@sian.com
我也要一份,謝謝你!
re: 慶祝中光棍節[未登錄] 小豬 2007-11-07 16:48
乖乖...結婚是遲早滴....當下就快點享受單身的快樂吧~~~
兄弟:
我都別你搞迷糊了??!能否給我提供一些關于java和jsp的資料??!
謝謝了??!
郵箱:zkco123@126.com
加油[未登錄] 小豬 2007-04-16 11:56
學習日語要多學多寫多聽多練,這樣才會記得住,既然對日語感興趣就好好學習吧!不要因為遇到一點小困難就退縮,好好加油吧你們。想學好日語就要下定決心。
re: 錢包丟失后事! 小豬 2006-08-01 07:31
共勉之,不過我是不把身份證放錢包里的。記得身份證號就行了。我們學校也聽說有人在學校食堂被偷錢包的,也不知道是外人還是學生,寒。
re: 關于開發框架的疑問? 小豬 2006-07-21 19:19
關注中。這里好像提問得到恢復的幾率不太理想。我一般都是自己解決了自己的問題以后再來這里改帖子的。
奔奔族愛香煙加可樂
-------------------------------------------------------------------
因此他們高度重視健康,是健身、FB的鐵桿狂熱分子。?
前后前后矛盾了吧.
其他寫得還是蠻好的.
re: j2ee入門學習之路 小豬 2006-07-20 05:07
csdn上看見過了.
我這個暑假打算把畢業設計寫完.大四就可以有時間做點事了.
pakage .class library .Application Framwork 有區別么?
我安裝了.但是幫助文檔不是中文的.我看<<eclipse從人門到精通>>上面說裝了多國語言包以后幫助文檔是也是中文的.害我高興了一下.
在這里我的插件安裝目錄結構為 F:\hongjun\myPlugins\language\, 所以 link 文件名我命名為 language.start, 如果你的插件安裝目錄結構為 D:\eclipse\myPlugins\languagepack, 則你的 link 文件名應命名為 languagepack.start
--------------------------------------------------------------
沒有必要把link文件名跟插件所安裝的文件夾名不同也一樣可以的.
re: 漢字(中文)還是unicode 小豬 2006-07-18 17:11
關于代碼單元和代碼點的理解:
1、一個代碼點可能包含一個或兩個代碼單元。
2、在我的測試程序中,“我 ”也只占用一個代碼單元。即代碼點數等于代碼單元數。
下面是在unicode的官方網站上找到的關于unicode的中文,韓文,日文的一些說明:
Q: I have heard that UTF-8 does not support some Japanese characters. Is this correct?
A: There is a lot of misinformation floating around about the support of Chinese, Japanese and Korean (CJK) characters. The Unicode Standard supports all of the CJK characters from JIS X 0208, JIS X 0212, JIS X 0221, or JIS X 0213, for example, and many more. This is true no matter which encoding form of Unicode is used: UTF-8, UTF-16, or UTF-32.
Unicode supports over 70,000 CJK characters right now, and work is underway to encode further additions. The International Standard ISO/IEC 10646 and the Unicode Standard are completely synchronized in repertoire and content. And that means that Unicode has the same repertoire as GB 18030, since that also is synchronized with ISO 10646 — although with a different ordering and byte format.
無論是那個編碼方式(UTF-8, UTF-16, or UTF-32)都可以對中文全面支持?
我的測試程序如下:
public class test0 {
public static void main(String[] args)
{String a="我 ";
int cuCount=a.length();
System.out.println("the number of code units required for string \"test\" in the UTF-16 encoding is "+cuCount);
int cpCount=a.codePointCount(0, a.length());
System.out.println("the number of code points is "+cpCount);
System.out.println("the end of string \"我 \" is "+a.charAt(a.length()-1));
}
}
輸出結果為:
the number of code units required for string "test" in the UTF-16 encoding is 2
the number of code points is 2
the end of string "我 " is [空格]
在eclipse里面找到了set encoding選項,在里面可以設置編碼方式。
re: 我的java開發試驗 小豬 2006-07-18 00:05
JAVA核心技術=CORE JAVA
我的經驗都寫在文章里面了.看完整本書再寫總結吧.
鐵手大哥:
你的文章不錯,但是就是缺少個例子,你個例子