<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    BorderJ's Blog

    --- java FreeBsd Web3D open-sources

      BlogJava :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      8 隨筆 :: 1 文章 :: 40 評(píng)論 :: 0 Trackbacks

    2006年8月18日 #

    Writely Blog is proud to announce that Writely access is now free for everyone. Just sign up for an account.

    Writely is a word processing tool acquired by Google this year. Since it was acquired, users were required to have an invitation to try the product. You can read my negative review, but there are many people who like Writely.
    posted @ 2006-08-18 09:53 BorderJ 閱讀(472) | 評(píng)論 (0)編輯 收藏

    2006年7月31日 #

    HttpRequest對(duì)象有兩種形式的getSession方法調(diào)用:
    一個(gè)是getSession(),
    另一個(gè)是getSession(boolean isNew)

    這樣的,前者會(huì)檢測(cè)當(dāng)前時(shí)候有session存在,如果不存在則創(chuàng)建一個(gè),如果存在就返回當(dāng)前的。
    getSession()相當(dāng)于getSession(true),

    參數(shù)為true時(shí),若存在會(huì)話則返回該會(huì)話,否則新建一個(gè)會(huì)話。
    參數(shù)為false時(shí),若存在會(huì)話則返回該會(huì)話,否則應(yīng)該返回一個(gè)NULL

    這是文檔:

    getSession ?
    ? public ? HttpSession ? getSession(boolean ? create)Returns ? the ? current ? HttpSession ? associated ? with ? this ? request ? or, ? if ? if ? there ? is ? no ? current ? session ? and ? create ? is ? true, ? returns ? a ? new ? session. ? ?
    ? If ? create ? is ? false ? and ? the ? request ? has ? no ? valid ? HttpSession, ? this ? method ? returns ? null. ? ?
    ? ?
    ? To ? make ? sure ? the ? session ? is ? properly ? maintained, ? you ? must ? call ? this ? method ? before ? the ? response ? is ? committed. ? If ? the ? container ? is ? using ? cookies ? to ? maintain ? session ? integrity ? and ? is ? asked ? to ? create ? a ? new ? session ? when ? the ? response ? is ? committed, ? an ? IllegalStateException ? is ? thrown. ?
    ? ?
    ? Parameters: ?
    ? true ? - ? to ? create ? a ? new ? session ? for ? this ? request ? if ? necessary; ? false ? to ? return ? null ? if ? there's ? no ? current ? session ?
    ? Returns: ?
    ? the ? HttpSession ? associated ? with ? this ? request ? or ? null ? if ? create ? is ? false ? and ? the ? request ? has ? no ? valid ? session ?


    感謝
    zhouhu的提醒,現(xiàn)在已經(jīng)修正。
    Edit By: BorderJ??? 2006.8.18


    posted @ 2006-07-31 19:46 BorderJ 閱讀(7860) | 評(píng)論 (3)編輯 收藏

    2006年7月20日 #

    ????????? 從各官方網(wǎng)站下了 php-5.1.4-Win32.zip ,apache_2.2.2-win32-x86-no_ssl.msi ,

    下載地址:
    php-5.1.4-Win32.zip :
    http://cn.php.net/distributions/php-5.1.4-Win32.zip
    apache_2.2.2-win32-x86-no_ssl.msi : http://mirror.vmmatrix.net/apache/httpd/binaries/win32/apache_2.2.2-win32-x86-no_ssl.msi

    我的安裝路徑:
    php :???????D:\border\php
    apache:????D:\border\Apache2.2

    安裝apache 并配置支持PHP:

    1.
    apache 安裝比較簡(jiǎn)單,一路next就可以安裝完成。在你的ie中輸入 http://127.0.0.1/?,看到結(jié)果是

    ?It works!

    說(shuō)明apache安裝成功!

    2.配置apache并支持php:
    ?????????把php解壓到D:\border\php,
    找到 php目錄里的 php.ini-dist重命名為 php.ini
    把php目錄加大你的path中。
    配置apache里的httpd.conf

    打開(kāi) D:\border\Apache2.2\conf\httpd.conf 這個(gè)文件

    找到 DocumentRoot "D:/php/Apache2/htdocs" 將其改為你的WEB目錄,如我的為

    DocumentRoot "D:/border/php/www"

    找到 DirectoryIndex index.html index.html.var 在后面加入 index.htm index.php (默認(rèn)index.php為首頁(yè)文件)

    --------------模塊化安裝PHP----------------------------------------
    找到 #LoadModule ssl_module modules/mod_ssl.so 這行,在此行后加入一行

    LoadModule php5_module "D:/border/php5apache2.dll"

    其中D:/border/php/php5apache2.dll為你php目錄中php5apache2.dll所在的位置

    再找到 AddType application/x-gzip .gz .tgz 這行,在此行后加入一行

    AddType application/x-httpd-php .php

    在后面加上:
    ScriptAlias /php/ "D:/border/php/"
    AddType application/x-httpd-php .php


    (其實(shí):上面兩行紅色的,你可以直接加在httpd.conf文件的最后面也可以的)
    --------------------------------------------------------------------

    此時(shí)PHP環(huán)境基本已經(jīng)配置成功
    在WEB根目錄(如我的D:\border\php\www)里建一個(gè)名為test.php (提示:用記事本的朋友,請(qǐng)避免文件為test.php.txt) ,的文件內(nèi)容如下?

    <??echo?phpinfo();??>?

    重新啟動(dòng)apache服務(wù)
    用瀏覽器打開(kāi) http://localhost/test.php
    如果可以看到php配置輸出信息就OK了 .

    詳細(xì)的說(shuō)明可以看說(shuō)明文檔

    注:
    不過(guò)在我安裝的過(guò)程中還是遇到了些問(wèn)題:

    提示:
    "Cannot load C:/border/php/php5apache2.dll into server: The specified module could not be found."

    原因:

    ?PHP壓縮包里的php5apache2.dll只適用于apache2.0.*

    解決方法:

    下載 這個(gè)文件?并解壓.共有三個(gè)文件.

    vcredist_x86.exe
    php5apache2.dll

    httpd.exe.manifest

    好,開(kāi)始

    1.將 php5apache2.dll 覆蓋掉你原來(lái)PHP目錄下的 php5apache2.dll 文件.

    2.將 httpd.exe.manifest 文件復(fù)制到你的apache安裝目錄下的bin文件夾下.

    3.雙擊運(yùn)行vcredist_x86.exe安裝.(如果您的系統(tǒng)里已安裝了 .NET framework 2.就可以省掉這一步)

    完成!去重啟你的apache2.2試試吧.

    參考:
    ?esayr??:apache 2.2.2 + PHP5.1.4 不能運(yùn)行的解決辦法.??

    ????????? 從各官方網(wǎng)站下了 php-5.1.4-Win32.zip ,apache_2.2.2-win32-x86-no_ssl.msi ,

    下載地址:
    php-5.1.4-Win32.zip :
    http://cn.php.net/distributions/php-5.1.4-Win32.zip
    apache_2.2.2-win32-x86-no_ssl.msi : http://mirror.vmmatrix.net/apache/httpd/binaries/win32/apache_2.2.2-win32-x86-no_ssl.msi

    我的安裝路徑:
    php :???????D:\border\php
    apache:????D:\border\Apache2.2

    安裝apache 并配置支持PHP:

    1.
    apache 安裝比較簡(jiǎn)單,一路next就可以安裝完成。在你的ie中輸入 http://127.0.0.1/?,看到結(jié)果是

    ?It works!

    說(shuō)明apache安裝成功!

    2.配置apache并支持php:
    ?????????把php解壓到D:\border\php,
    找到 php目錄里的 php.ini-dist重命名為 php.ini
    把php目錄加大你的path中。
    配置apache里的httpd.conf

    打開(kāi) D:\border\Apache2.2\conf\httpd.conf 這個(gè)文件

    找到 DocumentRoot "D:/php/Apache2/htdocs" 將其改為你的WEB目錄,如我的為

    DocumentRoot "D:/border/php/www"

    找到 DirectoryIndex index.html index.html.var 在后面加入 index.htm index.php (默認(rèn)index.php為首頁(yè)文件)

    --------------模塊化安裝PHP----------------------------------------
    找到 #LoadModule ssl_module modules/mod_ssl.so 這行,在此行后加入一行

    LoadModule php5_module "D:/border/php/php5apache2.dll"

    其中D:/border/php/php5apache2.dll為你php目錄中php5apache2.dll所在的位置

    再找到 AddType application/x-gzip .gz .tgz 這行,在此行后加入一行

    AddType application/x-httpd-php .php

    在后面加上:
    ScriptAlias /php/ "D:/border/php/php/"
    AddType application/x-httpd-php .php


    (其實(shí):上面兩行紅色的,你可以直接加在httpd.conf文件的最后面也可以的)
    --------------------------------------------------------------------

    此時(shí)PHP環(huán)境基本已經(jīng)配置成功
    在WEB根目錄(如我的D:\border\php\www)里建一個(gè)名為test.php (提示:用記事本的朋友,請(qǐng)避免文件為test.php.txt) ,的文件內(nèi)容如下?

    ?

    <??echo?phpinfo();??>?

    ?

    重新啟動(dòng)apache服務(wù)
    用瀏覽器打開(kāi) http://localhost/test.php
    如果可以看到php配置輸出信息就OK了 .

    詳細(xì)的說(shuō)明可以看說(shuō)明文檔

    注:
    不過(guò)在我安裝的過(guò)程中還是遇到了些問(wèn)題:

    提示:
    "Cannot load C:/php/php5apache2.dll into server: The specified module could not be found."

    原因:

    ?PHP壓縮包里的php5apache2.dll只適用于apache2.0.*

    解決方法:

    下載 這個(gè)文件?并解壓.共有三個(gè)文件.

    ?vcredist_x86.exe
    ?php5apache2.dll

    ?httpd.exe.manifest

    好,開(kāi)始

    1.將 php5apache2.dll 覆蓋掉你原來(lái)PHP目錄下的 php5apache2.dll 文件.

    2.將 httpd.exe.manifest 文件復(fù)制到你的apache安裝目錄下的bin文件夾下.

    3.雙擊運(yùn)行vcredist_x86.exe安裝.(如果您的系統(tǒng)里已安裝了 .NET framework 2.就可以省掉這一步)

    完成!去重啟你的apache2.2試試吧.

    參考:
    ?esayr??:apache 2.2.2 + PHP5.1.4 不能運(yùn)行的解決辦法.??
    ?php手冊(cè)
    ?windows 2000/XP/2003下安裝APACHE2.0.53、PHP5.0.3、MYSQL4.1.10a、PHPMYADMIN2..6.1


    ?


    ?

    posted @ 2006-07-20 18:22 BorderJ 閱讀(2641) | 評(píng)論 (6)編輯 收藏

    2006年7月18日 #

    ?????? 在Eclipse的web開(kāi)發(fā)平臺(tái)(WTP)包括了大部分web開(kāi)發(fā)工具,如: source editors for HTML, Javascript, CSS, JSP, SQL, XML, DTD, XSD, and WSDL; graphical editors for XSD and WSDL; J2EE project natures, builders, and models and a J2EE navigator; a Web service wizard and explorer, and WS-I Test Tools; and database access and query tools and models.?? 也支持XDoclet, 不過(guò)自己要先下載 XDoclet . 然后在Window > Preferences > XDoclet? 進(jìn)行配置.

    ???? WTP : http://www.eclipse.org/webtools/
    ???? XDoclet . http://xdoclet.sourceforge.net/xdoclet/index.html


    To use XDoclet annotation support, or to create enterprise beans, XDoclet must be installed on your system and configured to work with the workbench.

    Download and install XDoclet from http://xdoclet.sourceforge.net/xdoclet/index.html
    To configure XDoclet to work with the workbench:

    1.Click Window > Preferences > XDoclet to open the XDoclet Runtime Preferences page.
    2.Check the Enable XDoclet Builder check box to turn on annotation-based artifact creation.
    3.Use the Browse button to locate the installation directory for XDoclet (XDoclet Home).
    4.Select the Version of XDoclet that you have installed. Supported versions include 1.2.1, 1.2.2, 1.2.3.
    5.Click OK to save the preferences.

    posted @ 2006-07-18 17:52 BorderJ 閱讀(3043) | 評(píng)論 (0)編輯 收藏

    自: 鐵手劍譜

    本系列源改編自O(shè)'Reily的Strus Cookbook,后因時(shí)間關(guān)系沒(méi)再進(jìn)行。如果以后有時(shí)間還需繼續(xù),可能會(huì)更簡(jiǎn)化一些?。

    Struts秘籍之第1段:配置Struts應(yīng)用

    Struts秘籍之起式:第1.2式:部署Struts示例應(yīng)用

    Struts秘籍之起式:第1.3式:遷移至Struts 1.1

    Struts秘籍之起式:第1.4式:升級(jí)至Struts 1.2

    Struts秘籍之起式:第1.5:JSP 應(yīng)用轉(zhuǎn)到Struts

    Struts秘籍之起式:第1.6式:管理Struts配置文件

    Struts秘籍之起式:第1.7式:使用Ant進(jìn)行構(gòu)建和部署

    Struts秘籍之起式:第1.8式:用XDoclet 產(chǎn)生Struts配置文件

    Struts秘籍之第2段:UI

    Struts秘籍之第1段:第2.1式:用插件來(lái)進(jìn)行應(yīng)用初始化

    Struts秘籍之第1段:第2.1式:關(guān)于標(biāo)簽庫(kù)聲明

    Struts秘籍之第1段:第2.3式:在JSP中使用常數(shù)

    Struts秘籍之第1段:第2.4式:多配置文件

    Struts秘籍之第1段:第2.5. 將應(yīng)用重構(gòu)為模塊

    Struts秘籍之第1段:第2.6. 使用多個(gè)資源束

    Struts秘籍之第1段:第2.7. 訪問(wèn)來(lái)自于數(shù)據(jù)庫(kù)中的消息資源

    Struts秘籍之第1段:第2.8. 有選擇地禁止Action

    Struts秘籍之第2段:第3.1式:使用JSTL

    Struts秘籍之第2段:第3.2式:使用Struts-EL 標(biāo)簽

    Struts秘籍之第2段:第3.3式:顯示索引屬性

    Struts秘籍之第2段:第3.4式:在表單中使用索引屬性

    Struts秘籍之第2段:第3.5式:JSTL循環(huán)中使用索引屬性

    Struts秘籍之第2段:第3.6式:從圖像提交表單

    Struts秘籍之第2段:第3.7式:動(dòng)態(tài)產(chǎn)生JavaScript

    Struts秘籍之第2段:第3.8式:使用JavaScript動(dòng)態(tài)改變選擇項(xiàng)

    Struts秘籍之第2段,第 3.9式,產(chǎn)生動(dòng)態(tài)選擇列表項(xiàng)目

    Struts秘籍之第2段:第3.10:過(guò)濾文本輸入?


    ?????????????????????????????????????????????????????? 本系列文章來(lái)自:http://www.tkk7.com/SteelHand/category/1170.html?Show=All

    posted @ 2006-07-18 12:26 BorderJ 閱讀(706) | 評(píng)論 (0)編輯 收藏

    2006年7月12日 #

    ??? 用了rome 0,8的jar包,代碼大部分來(lái)自于rome-samples-0.7 。
    對(duì)了,放個(gè)rome的鏈接Rome's Home,可以直接去下載。還有就是在用rome的時(shí)候,把信息輸出到xml文件里

    ,部分出現(xiàn)亂碼不知道是怎么回事,我讀的feed文件是utf-8的,我也是通過(guò)utf8讀的,但是還是有一部分亂碼。今天找了一天也沒(méi)有解決。。。

    ?1?/*
    ?2??*?Created?on?2006-7-11
    ?3??*
    ?4??*?TODO?To?change?the?template?for?this?generated?file?go?to
    ?5??*?Window?-?Preferences?-?Java?-?Code?Style?-?Code?Templates
    ?6??*/
    ?7?package?border;
    ?8?
    ?9?import?java.io.FileWriter;
    10?import?java.io.Writer;
    11?import?java.net.URL;
    12?import?java.util.List;
    13?
    14?import?com.sun.syndication.feed.synd.SyndContent;
    15?import?com.sun.syndication.feed.synd.SyndEntry;
    16?import?com.sun.syndication.feed.synd.SyndFeed;
    17?import?com.sun.syndication.fetcher.FeedFetcher;
    18?import?com.sun.syndication.fetcher.impl.FeedFetcherCache;
    19?import?com.sun.syndication.fetcher.impl.HashMapFeedInfoCache;
    20?import?com.sun.syndication.fetcher.impl.HttpURLFeedFetcher;
    21?import?com.sun.syndication.io.SyndFeedOutput;
    22?
    23?/**
    24??*?@author?Border
    25??*?
    26??*?TODO?To?change?the?template?for?this?generated?type?comment?go?to?Window?-
    27??*?Preferences?-?Java?-?Code?Style?-?Code?Templates
    28??*/
    29?public?class?RSSReader?{
    30?????private?static?final?String?feedType?=?"rss_2.0";
    31?
    32?????public?static?void?main(String[]?args)?throws?Exception?{
    33?
    34?????????String?filename?=?"E:\\ROME\\feed_fetcher2.xml";
    35?????????try?{
    36?????????????FeedFetcherCache?feedInfoCache?=?HashMapFeedInfoCache.getInstance();
    37?????????????FeedFetcher?feedFetcher?=?new?HttpURLFeedFetcher();
    38?????????????SyndFeed?feed?=?feedFetcher.retrieveFeed(new?URL(
    39?????????????????????"http://www.tkk7.com/border/Rss.aspx"));
    40?
    41?????????????feed.setFeedType(feedType);
    42?????????????feed.setTitle("Border's?Blog");
    43?????????????feed.setDescription("?java?Web3D?FreeBsd?");
    44?????????????feed.setAuthor("?By:border?");
    45?????????????feed.setLink("?http://www.tkk7.com/border?");
    46?
    47?????????????List?entryList?=?feed.getEntries();
    48?
    49?????????????for?(int?i?=?0;?i?<?entryList.size();?i++)?{
    50?????????????????SyndEntry?entry?=?(SyndEntry)?entryList.get(i);
    51?
    52?????????????????entry.setPublishedDate(entry.getPublishedDate());
    53?????????????????entry.setTitle(new?String(entry.getTitle().getBytes("utf-8")));
    54?????????????????entry.setLink(entry.getLink());
    55?
    56?????????????????SyndContent?content?=?entry.getDescription();
    57?????????????????content.setValue(new?String(content.getValue()
    58?????????????????????????.getBytes("utf-8")));
    59?????????????}
    60?????????????SyndFeedOutput?output?=?new?SyndFeedOutput();
    61?????????????Writer?writer?=?new?FileWriter(filename);
    62?????????????output.output(feed,?writer);
    63?
    64?????????????System.out.println("The?feed?has?been?written?to?the?file?["
    65?????????????????????+?filename?+?"]");
    66?????????????System.out.println("?ok?!");
    67?
    68?????????}?catch?(Exception?e)?{
    69?????????????System.out.println("ERROR:?"?+?e.getMessage());
    70?????????}
    71?????}
    72?}


    下面是生成的xml文件:

    ?1?<?xml?version="1.0"?encoding="UTF-8"?>
    ?2?<rss?xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/"?xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"?xmlns:dc="http://purl.org/dc/elements/1.1/"?version="2.0">
    ?3???<channel>
    ?4?????<title>Border's?Blog</title>
    ?5?????<link>http://www.tkk7.com/border</link>
    ?6?????<description>java?Web3D?FreeBsd</description>
    ?7?????<language>zh-cn</language>
    ?8?????<pubDate>Thu,?06?Jul?2006?11:05:25?GMT</pubDate>
    ?9?????<dc:creator>By:border</dc:creator>
    10?????<dc:date>2006-07-06T11:05:25Z</dc:date>
    11?????<dc:language>zh-cn</dc:language>
    12?????<item>
    13???????<title>免費(fèi)MySQL數(shù)據(jù)庫(kù)申譿</title>
    14???????<link>http://www.tkk7.com/border/archive/2006/07/06/57015.html</link>
    15???????<description>?&lt;a?&gt;&lt;img?alt=""?src="http://www.kuangfeng.cn/blog/wp-content/uploads/2006/03/db4free.jpg"?align="left"?border="0"?/&gt;&lt;/a&gt;&lt;br?/&gt;&lt;br?/&gt;&lt;br?/&gt;&lt;br?/&gt;&lt;a?&gt;Db4free&lt;/a&gt;:專業(yè)提供免費(fèi)數(shù)據(jù)庫(kù)服務(wù),支持?MySQL?5.0?5.1,支持使用Phpmyadmin進(jìn)行管理,以后還將擴(kuò)展支持PostgreSQL,?Firebird?等數(shù)據(jù)庫(kù).&lt;img?src?="http://www.tkk7.com/border/aggbug/57015.html"?width?=?"1"?height?=?"1"?/&gt;&lt;br&gt;&lt;br&gt;&lt;div?align=right&gt;&lt;a?style="text-decoration:none;"?href="/border/"?target="_blank"&gt;Border&lt;/a&gt;?2006-07-06?19:05?&lt;a?href="/border/archive/2006/07/06/57015.html#Feedback"?target="_blank"?style="text-decoration:none;"&gt;發(fā)表評(píng)論&lt;/a&gt;&lt;/div&gt;</description>
    16???????<pubDate>Thu,?06?Jul?2006?11:05:00?GMT</pubDate>
    17???????<guid?isPermaLink="false">http://www.tkk7.com/border/archive/2006/07/06/57015.html</guid>
    18???????<dc:creator>Border</dc:creator>
    19???????<dc:date>2006-07-06T11:05:00Z</dc:date>
    20?????</item>
    21?????<item>
    22???????<title>剛剛大廈晃的利害,是不是有些地震叿?--??北京</title>
    23???????<link>http://www.tkk7.com/border/archive/2006/07/04/56502.html</link>
    24???????<description>??????剛剛大廈晃的利害,是不是有些地震叿?,在17層感覺(jué)比較厲害,不知道在北京的其他同志有沒(méi)有注意到?&lt;img?src?="http://www.tkk7.com/border/aggbug/56502.html"?width?=?"1"?height?=?"1"?/&gt;&lt;br&gt;&lt;br&gt;&lt;div?align=right&gt;&lt;a?style="text-decoration:none;"?href="/border/"?target="_blank"&gt;Border&lt;/a&gt;?2006-07-04?12:20?&lt;a?href="/border/archive/2006/07/04/56502.html#Feedback"?target="_blank"?style="text-decoration:none;"&gt;發(fā)表評(píng)論&lt;/a&gt;&lt;/div&gt;</description>
    25???????<pubDate>Tue,?04?Jul?2006?04:20:00?GMT</pubDate>
    26???????<guid?isPermaLink="false">http://www.tkk7.com/border/archive/2006/07/04/56502.html</guid>
    27???????<dc:creator>Border</dc:creator>
    28???????<dc:date>2006-07-04T04:20:00Z</dc:date>
    29?????</item>
    30?????<item>
    31???????<title>通過(guò)js等比擴(kuò)大圖片的比伿</title>
    32???????<link>http://www.tkk7.com/border/archive/2006/07/03/56279.html</link>
    33???????<description>摘要:????在做web庿發(fā)的時(shí)?,顯示圖片是經(jīng)常用到?在默認(rèn)的情況下圖片是擴(kuò)充,但是有的時(shí)?顯示效果會(huì)不如人意。有時(shí)容器的大小是固定的,我們要把圖片等比擴(kuò)大?&lt;a?href='http://www.tkk7.com/border/archive/2006/07/03/56279.html'&gt;閱讀全文&lt;/a&gt;?&lt;img?src?="http://www.tkk7.com/border/aggbug/56279.html"?width?=?"1"?height?=?"1"?/&gt;&lt;br&gt;&lt;br&gt;&lt;div?align=right&gt;&lt;a?style="text-decoration:none;"?href="/border/"?target="_blank"&gt;Border&lt;/a&gt;?2006-07-03?12:13?&lt;a?href="/border/archive/2006/07/03/56279.html#Feedback"?target="_blank"?style="text-decoration:none;"&gt;發(fā)表評(píng)論&lt;/a&gt;&lt;/div&gt;</description>
    34???????<pubDate>Mon,?03?Jul?2006?04:13:00?GMT</pubDate>
    35???????<guid?isPermaLink="false">http://www.tkk7.com/border/archive/2006/07/03/56279.html</guid>
    36???????<dc:creator>Border</dc:creator>
    37???????<dc:date>2006-07-03T04:13:00Z</dc:date>
    38?????</item>
    39???</channel>
    40?</rss>
    41?
    42?


    By:border
    posted @ 2006-07-12 18:37 BorderJ 閱讀(2438) | 評(píng)論 (7)編輯 收藏

    2006年7月6日 #

    ?



    Db4free:專業(yè)提供免費(fèi)數(shù)據(jù)庫(kù)服務(wù),支持?MySQL 5.0,5.1,支持使用Phpmyadmin進(jìn)行管理,以后還將擴(kuò)展支持PostgreSQL, Firebird 等數(shù)據(jù)庫(kù).
    posted @ 2006-07-06 19:05 BorderJ 閱讀(9100) | 評(píng)論 (19)編輯 收藏

    2006年7月4日 #

    ???? ?剛剛大廈晃的利害,是不是有些地震呀 ,在17層感覺(jué)比較厲害,不知道在北京的其他同志有沒(méi)有注意到。
    posted @ 2006-07-04 12:20 BorderJ 閱讀(873) | 評(píng)論 (2)編輯 收藏

    2006年7月3日 #

         摘要: 在做web開(kāi)發(fā)的時(shí)候,顯示圖片是經(jīng)常用到。在默認(rèn)的情況下圖片是擴(kuò)充,但是有的時(shí)候顯示效果會(huì)不如人意。有時(shí)容器的大小是固定的,我們要把圖片等比擴(kuò)大。  閱讀全文
    posted @ 2006-07-03 12:13 BorderJ 閱讀(2074) | 評(píng)論 (3)編輯 收藏

    僅列出標(biāo)題  
    主站蜘蛛池模板: 久久无码av亚洲精品色午夜| 中文字幕精品亚洲无线码一区| 亚洲一区二区三区免费视频| 91福利免费视频| 日本亚洲欧洲免费天堂午夜看片女人员 | 永久看日本大片免费35分钟| 最近中文字幕mv免费高清在线 | 亚洲精品天堂成人片AV在线播放| 亚洲一级毛片免费观看| 亚洲AV无码国产精品色| 亚洲伦理中文字幕| 亚洲精品无码久久久久牙蜜区| 亚洲砖码砖专无区2023| 亚洲爆乳AAA无码专区| 国产亚洲美女精品久久久久| 真正全免费视频a毛片| 国产精品福利片免费看| 13小箩利洗澡无码视频网站免费| 男人j进入女人j内部免费网站| 日韩在线不卡免费视频一区| 精品香蕉在线观看免费| 德国女人一级毛片免费| 免费吃奶摸下激烈视频| 亚洲午夜福利精品久久| 亚洲成人激情在线| 亚洲av永久无码精品天堂久久| 亚洲欧洲AV无码专区| 日日摸夜夜添夜夜免费视频| 曰批全过程免费视频在线观看无码| 三年片在线观看免费观看大全一 | 一级一看免费完整版毛片| 免费国产99久久久香蕉| 999国内精品永久免费视频| 国产高清免费在线| 亚洲综合伊人久久综合| 78成人精品电影在线播放日韩精品电影一区亚洲 | 一级成人a做片免费| 亚欧日韩毛片在线看免费网站| 国产福利视精品永久免费| 破了亲妺妺的处免费视频国产| 亚洲成A人片在线观看中文|