??xml version="1.0" encoding="utf-8" standalone="yes"?>免费观看在线综合色,福利片一区二区,国产一区二区不卡在线http://www.aygfsteel.com/yexiong/Yexiong's java blogzh-cnSat, 17 May 2025 19:14:20 GMTSat, 17 May 2025 19:14:20 GMT60解决ORA-01033: ORACLE initialization or shutdown in progress错误[转] http://www.aygfsteel.com/yexiong/archive/2008/04/21/194619.htmlYexiongYexiongMon, 21 Apr 2008 13:15:00 GMThttp://www.aygfsteel.com/yexiong/archive/2008/04/21/194619.htmlhttp://www.aygfsteel.com/yexiong/comments/194619.htmlhttp://www.aygfsteel.com/yexiong/archive/2008/04/21/194619.html#Feedback1http://www.aygfsteel.com/yexiong/comments/commentRss/194619.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/194619.html 因误操作Q数据库中某一数据文g被误删,控制面板的Oracle相关服务昄已启动,但用SQL*Plus无法q接Q显CZ下错误:
ORA-01033: ORACLE initialization or shutdown in progress

模拟现象Q?
create tablespace test datafile
'c:\test.ora' size 5M
AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED
default storage (initial 128K next 1M pctincrease 0)
/

关闭所有服务stop.bat
net stop "OracleWebAssistant0"
net stop "OracleOraHome81TNSListener"
net stop "OracleServiceORADB"
shutdown

在操作系l中删除test.ora文g

重新启动服务start.bat
net start "OracleWebAssistant0"
net start "OracleOraHome81TNSListener"
net start "OracleServiceORADB"

服务里OracleServiceORADB昄已启动,但用SQL*Plus无法q接Q?
昄ORA-01033: ORACLE initialization or shutdown in progress

解决ҎQ?
先让该数据文件脱?可以打开数据?
C:\>svrmgrl
svrmgrl>connect internal
svrmgrl>shutdown
svrmgrl>startup mount
--ARCHIVELOG模式命oQ文件名要大?
svrmgrl>alter database datafile 'C:\TEST.ORA' offline;
--NOARCHIVELOG模式命o
svrmgrl>alter database datafile 'C:\TEST.ORA' offline drop;
svrmgrl>alter database open;

--查询数据文g联、脱机状?
SQL> select file#,name,status from v$datafile;
SQL> drop tablespace test;

表空间已丢弃?
丢失联机日志文g

分两U情况处?
1、丢q是非zd的日志文Ӟ
2、丢q是当前激zȝ日志文g?

如果是第一U情况,而发生故障的日志文gl又h多个成员Q可以先数据库shutdownQ然后用操作pȝ命o损坏日志文件组中好的日志成员文件把损坏的成员文件覆盖(在同一个日志成员组中的所有日志文件的各ؓ镜象的)Q如果其物理位置不可用可其拯到新的驱动器上,使用alter database rename file ‘xxxx’ to ‘xxxx’改变文g位置Q之后启动数据库Q如果正帔R上进行一个冷备䆾。如果损坏的日志l中只有一个日志成员,先mount上数据库Q将其{换ؓnoarchivelog模式Q执行alter database add logfile member ‘xxx’ to group ‘x’l相关组增加一个成员,再执行alter database drop logfile member ‘bad_file’损坏的日志文g删除Q由于数据库的结构发生变动需要备份控制文Ӟ之后数据库改回archivelog模式Q做一个冷备䆾?

如果丢失的是当前Ȁzȝ日志文gQ数据库又没有镜像而且当前日志l中所有成员均变ؓ不可用。首先将数据库shutdown abortQ从最q的一ơ全备䆾中恢复所有的数据文gQ将数据库启动到mount状态。如果原来的日志文g物理位置不可用,使用alter database rename file ‘xxx’ to ‘xxx’改变文g的存放位|。然后,使用recover database until cancel命o来恢复数据库Q直到提C最后一个归档日志运用完之后Q输入cancel。之后用alter database open resetlogs打开数据库,如果没有问题Q立卌行一个冷备䆾。注意!所有包含在损坏的redo log中的信息会丢失Q也是说数据库崩溃前已l提交的数据有可能会丢失。这对于某些要求很高的应用将会损失惨重,因此应尽量每个日志l具有多个日志成员,q且攄在不同的驱动器上防止发生介质故障?


Yexiong 2008-04-21 21:15 发表评论
]]>
Oracle ORA-12154: TNS: could not resolve service name- -http://www.aygfsteel.com/yexiong/archive/2007/01/31/97040.htmlYexiongYexiongWed, 31 Jan 2007 10:23:00 GMThttp://www.aygfsteel.com/yexiong/archive/2007/01/31/97040.htmlhttp://www.aygfsteel.com/yexiong/comments/97040.htmlhttp://www.aygfsteel.com/yexiong/archive/2007/01/31/97040.html#Feedback0http://www.aygfsteel.com/yexiong/comments/commentRss/97040.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/97040.html                  

上下文:机器上安装了一个Oracle817服务器,但是都是最安装,然后想通过q台机器的SqlPlusq接其他机器的Oracle8i服务?/div>
现象Q通过Net8 Assistant可以试通过Q但是用SqlPlus则不行,报ORA-12154的错?/div>
解决方式Q检?Oracle_Home\network\admin\tnsname.ora文gQ看看配|的TNS在不?/div>
?Oracle_Home\network\admin\sqlnet.oraQ看看NAMES.DIRECTORY_PATHq个帔R的倹{需要设|ؓQNAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
然后打开SqlPlusOk?/div>
原因Q估计是NAMES.DIRECTORY_PATH帔R是查询服务的方式。我没有修改q个之前NAMES.DIRECTORY_PATH= (HOSTNAMEQ是q个样子的,所以可能他仅仅查询本机器的服务。加上TNSAMES 可能是增加解析TNS的功能。NNDQ也许是?/div>

Yexiong 2007-01-31 18:23 发表评论
]]>Javadcookiehttp://www.aygfsteel.com/yexiong/archive/2007/01/25/95846.htmlYexiongYexiongThu, 25 Jan 2007 01:45:00 GMThttp://www.aygfsteel.com/yexiong/archive/2007/01/25/95846.htmlhttp://www.aygfsteel.com/yexiong/comments/95846.htmlhttp://www.aygfsteel.com/yexiong/archive/2007/01/25/95846.html#Feedback1http://www.aygfsteel.com/yexiong/comments/commentRss/95846.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/95846.html/*
 * 写cookie
*/
Cookie namecookie = new Cookie("username",username);
Cookie passwordcookie = new Cookie("password",password);
 

//生命周期    一q?br />namecookie.setMaxAge(60*60*24*365);
passwordcookie.setMaxAge(60*60*24*365);
 
    
response.addCookie(namecookie);
response.addCookie(passwordcookie); 
 

/*
 * 读cookie
*/
Cookie[] cookies = request.getCookies();
if(cookies!=null)
{
    String username = "";
    String password = "";
 
    for (int i = 0; i < cookies.length; i++) 
    {
       Cookie c = cookies[i];     
       if(c.getName().equalsIgnoreCase("username "))
       {
          name = c.getValue();
        }
        else if(c.getName().equalsIgnoreCase("password"))
        {
           password = c.getValue();
        }
 
    } 
  }



Yexiong 2007-01-25 09:45 发表评论
]]>
Tomcat和Apache的整?/title><link>http://www.aygfsteel.com/yexiong/archive/2005/06/28/6824.html</link><dc:creator>Yexiong</dc:creator><author>Yexiong</author><pubDate>Tue, 28 Jun 2005 08:44:00 GMT</pubDate><guid>http://www.aygfsteel.com/yexiong/archive/2005/06/28/6824.html</guid><wfw:comment>http://www.aygfsteel.com/yexiong/comments/6824.html</wfw:comment><comments>http://www.aygfsteel.com/yexiong/archive/2005/06/28/6824.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/yexiong/comments/commentRss/6824.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/yexiong/services/trackbacks/6824.html</trackback:ping><description><![CDATA[<P>单独使用Tomcat做JSP服务器,在工作效率上会有问题Qƈ且所能承受的最大ƈ发连接数也有一定的限制;<BR>当ƈ发连接较多时QTomcat׃处于“僵歠Z状态,对后l的hq接失去响应。所以现在就有了一些“整合”解x案:<BR><BR>html与jsp的功能部分进行明分工,让tomcat只处理jsp部分Q其它的由apache,IIS{这些web server处理Q?BR>由此大大节省了tomcat有限的工作“线E”?/P> <P>所需的Y件包<BR>Sun J2SDK-1.4.2<BR>Apache HTTP Server 2.0.54<BR>Tomcat 5.0.28<BR>jakarta-tomcat-connectors-jk2.0.4-win32-apache2.0.49    //完成了TOMCAT和APACHE服务器的集成?/P> <P>另外QAJP 是一个协议,用于TOMCAT和其它WEB服务器之间传输数据?/P> <P><BR>安装 Sun J2SDK-1.4.2<BR>安装 Apache HTTP Server 2.0.54<BR>安装 Tomcat 5.0.28</P> <P>配置JDK环境变量<BR>配置Tomcat环境变量<BR><BR>整合安装<BR>mod_jk2.so复制到D:\Program Files\Apache Group\Apache2\modules目录下:<BR>  ~辑D:\Program Files\Apache Group\Apache2\conf\httpd.conf文g,在LoadModule那一D代码中dQ?/P> <P>  LoadModule jk2_module modules/mod_jk2.so<BR><BR>  <BR>  AddDefaultCharset GBK<BR>  在“虚拟主机配|代码段”中dQ(此段配置可以Ҏ你的实际情况q行修改Q?/P> <P>  <VirtualHost *:80><BR>        ServerAdmin <A href="mailto:yx82@163.com">yx82@163.com</A><BR>        DocumentRoot "d:/website"  #此处讄的是虚拟目录的\?BR>        ServerName <A >www.yexiong.com</A><BR>        ErrorLog logs/my-error_log<BR>        CustomLog logs/my-access_log common<BR>        DirectoryIndex index.html index.htm index.jsp<BR>        <Location "/*.jsp"><BR>               JkUriSet worker ajp13:localhost:8009<BR>        </Location><BR>  </VirtualHost></P> <P>支持中文Q?BR>Tomcat 目录?conf/server.xml 文g内的<BR> <Connector port="8009" <BR>               enableLookups="false" redirectPort="8443" debug="0"<BR>               protocol="AJP/1.3" /><BR>改ؓQ?BR> <Connector port="8009" URIEncoding="GBK"  <BR>               enableLookups="false" redirectPort="8443" debug="0"<BR>               protocol="AJP/1.3" /><BR>卻I加入 URIEncoding="GBK"  <BR><BR><BR>~写workers2.properties文gq加入H:\Apache\Apache2\conf目录Q内容如?<BR>[shm]<BR>file=${serverRoot}/logs/shm.file<BR>size=1048576<BR>#The socket channel<BR>[channel.socket:localhost:8009]<BR>port=8009<BR>host=127.0.0.1<BR>#define the worker<BR>[ajp13:localhost:8009]<BR>channel=channel.socket:localhost:8009<BR>#uri mapping<BR>[uri:*/*]<BR>worker=ajp13:localhost:8009</P> <P>此时打开览器,输入 <A >http://127.0.0.1:8079</A> 应该可以看到 tomcat Ƣ迎,说明已配|成?<BR>注: 8079是apache端口?/P><img src ="http://www.aygfsteel.com/yexiong/aggbug/6824.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/yexiong/" target="_blank">Yexiong</a> 2005-06-28 16:44 <a href="http://www.aygfsteel.com/yexiong/archive/2005/06/28/6824.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>今天到Io exception : The Network Adapter could not establish the connectionQ搞了半天,原来是被防火墙给当住了,汗…?/title><link>http://www.aygfsteel.com/yexiong/archive/2005/06/27/6769.html</link><dc:creator>Yexiong</dc:creator><author>Yexiong</author><pubDate>Mon, 27 Jun 2005 07:03:00 GMT</pubDate><guid>http://www.aygfsteel.com/yexiong/archive/2005/06/27/6769.html</guid><wfw:comment>http://www.aygfsteel.com/yexiong/comments/6769.html</wfw:comment><comments>http://www.aygfsteel.com/yexiong/archive/2005/06/27/6769.html#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://www.aygfsteel.com/yexiong/comments/commentRss/6769.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/yexiong/services/trackbacks/6769.html</trackback:ping><description><![CDATA[今天到QTomcat q?Oracle 数据库时出现如下异常信息Q?BR><BR>org.apache.commons.dbcp.SQLNestedException:Cannot create PoolableConnectionFactory<BR>(Io exception : The Network Adapter could not establish the connection)<BR><BR>搞了半天Q原来是被防火墙l当住了Q汗…?BR><BR>后来在防火墙开?个端口, 8080, 8009, 8005Q?问题搞定?img src ="http://www.aygfsteel.com/yexiong/aggbug/6769.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/yexiong/" target="_blank">Yexiong</a> 2005-06-27 15:03 <a href="http://www.aygfsteel.com/yexiong/archive/2005/06/27/6769.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>JS中的正则表达式小的技?--TestҎ的?http://www.aygfsteel.com/yexiong/archive/2005/06/17/6276.htmlYexiongYexiongFri, 17 Jun 2005 04:10:00 GMThttp://www.aygfsteel.com/yexiong/archive/2005/06/17/6276.htmlhttp://www.aygfsteel.com/yexiong/comments/6276.htmlhttp://www.aygfsteel.com/yexiong/archive/2005/06/17/6276.html#Feedback0http://www.aygfsteel.com/yexiong/comments/commentRss/6276.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/6276.htmltest Ҏ

q回一?Boolean |它指出在被查扄字符串中是否存在模式?/P>

rgexp.test(str)

参数

rgexp

必选项。包含正则表辑ּ模式或可用标志的正则表达?/B>对象?/P>

str

必选项。要在其上测试查扄字符丌Ӏ?/P>

说明

test Ҏ查在字符串中是否存在一个模式,如果存在则返?trueQ否则就q回 false?

全局 RegExp 对象的属性不?test Ҏ来修攏V?/P>

CZ

下面的例子D例说明了 test Ҏ的用法:

<script language=jscript>
function TestDemo(){
 try
{         
   var re="abc"
  var s=/a/ //q里设正则表辑ּ
   alert(s.test(re)) //如果包含则返回真
}
catch(e)
{
alert("err")
}
}
TestDemo()
</script>


Yexiong 2005-06-17 12:10 发表评论
]]>
如一个文本框失去焦点Ӟ判断输入的值只能ؓ数字http://www.aygfsteel.com/yexiong/archive/2005/06/17/6275.htmlYexiongYexiongFri, 17 Jun 2005 04:09:00 GMThttp://www.aygfsteel.com/yexiong/archive/2005/06/17/6275.htmlhttp://www.aygfsteel.com/yexiong/comments/6275.htmlhttp://www.aygfsteel.com/yexiong/archive/2005/06/17/6275.html#Feedback1http://www.aygfsteel.com/yexiong/comments/commentRss/6275.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/6275.html <HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<script>
//如一个文本框失去焦点Ӟ判断输入的值只能ؓ数字
function isNumber(){
 isNum = /^[0-9]*$/;
 alert(isNum.test(Form1.InputBox.value));
}
</script>
<BODY>
<FORM name="Form1" METHOD=POST ACTION="">
<INPUT TYPE="text" NAME="InputBox" value="" onblur="isNumber()">
</FORM>
</BODY>
</HTML>



Yexiong 2005-06-17 12:09 发表评论
]]>
[收藏]几个常用的用正则表达式验证字W串的函?http://www.aygfsteel.com/yexiong/archive/2005/06/17/6274.htmlYexiongYexiongFri, 17 Jun 2005 04:08:00 GMThttp://www.aygfsteel.com/yexiong/archive/2005/06/17/6274.htmlhttp://www.aygfsteel.com/yexiong/comments/6274.htmlhttp://www.aygfsteel.com/yexiong/archive/2005/06/17/6274.html#Feedback0http://www.aygfsteel.com/yexiong/comments/commentRss/6274.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/6274.html
<!-- name,phone,age,money checked-->
<script language=javascript runat=server>
  isName = /^[A-Za-z\-]+$/;   //q个是表明输入的名字只能是字母和q字W组?
  isPhone = /^(\+\d+ )?(\(\d+\) )?[\d ]+$/; //q个是国际通用的电话号码判?
  isAge  = /^(1[0-2]\d|\d{1,2})$/; //q个是年龄的判断
  isMoney = /^\d+\.\d{2}$/;  //q个是判断输入的是否币?
</script>
 <!-- Email地址有效性验证函?->
<script language=javascript runat=server>
  function isEmail(src) {
    return (isEmail1.test(src) && isEmail2.test(src));
  }

  isEmail1    = /^\w+([\.\-]\w+)*\@\w+([\.\-]\w+)*\.\w+$/;
  isEmail2    = /^.*@[^_]*$/;
</script>
 <!-- IP地址有效性验证函?->
 <script language=javascript runat=server>
    ip_ip = '(25[0-5]|2[0-4]\\d|1\\d\\d|\\d\\d|\\d)';
    ip_ipdot = ip + '\\.';
    isIPaddress = new RegExp('^'+ip_ipdot+ip_ipdot+ipdot+ip_ip+'$');
</script>
  
<!-- password有效性验证函?->
<script language=javascript runat=server>
function TestPwd(src)
{
  var sxf,regex;
 sxf='^[\\w]{6,12}$';
  regex=new RegExp(sxf);
  return regex.test(src);
}
</script>
 
<!--ZipCode check function-->
<script language=javascript runat=server>
function TestZipCode(src)
 {
  var ZipCode,regex;
  ZipCode="^[\\d]{6}$"
  regex=new RegExp(ZipCode);
  return regex.test(src);
 }
</script>
 
<!--验证用户输入w䆾证号的合法?->
<script language=javascript runat=server>
  isIdCorrect1=/^\d{15}$/;
  isIdCorrect2=/^\d{18}$/;
  function isIdCorrect(src)
  {
    return(isIdCorrect1.test(src)&&isIdCorrect2.test(src));
  }
</script>

应用也很单,以上函数均是应用在服务器端,若用在客L需要把runat=serverL。我举两个例子:
IF isIPaddress.test(str)=false THEN
 Response.Write"IP 地址错误Q请重新输入?
 Response.End
END IF
IF TestPwd(str)=false THEN
  Response.Write"密码错误Q请重新输入?
 Response.End
END IF

事实上你只要熟练掌握正则表达式的应用Q对于判断字W串输入的正性那直是菜一。正则表辑ּq能用于字符串替换,ubb语法是用正则表辑ּ的替换做成的?
收藏自:http://www.netop.cc/doc.asp?cg=37&did=23


Yexiong 2005-06-17 12:08 发表评论
]]>Tomcat 配置虚拟Lhttp://www.aygfsteel.com/yexiong/archive/2005/06/06/5620.htmlYexiongYexiongMon, 06 Jun 2005 09:05:00 GMThttp://www.aygfsteel.com/yexiong/archive/2005/06/06/5620.htmlhttp://www.aygfsteel.com/yexiong/comments/5620.htmlhttp://www.aygfsteel.com/yexiong/archive/2005/06/06/5620.html#Feedback0http://www.aygfsteel.com/yexiong/comments/commentRss/5620.htmlhttp://www.aygfsteel.com/yexiong/services/trackbacks/5620.html#***********************************************************************
<Host name=" <alias>website1.com</alias>
 <alias>website1</alias>
 <Context path="" docBase="D:\web\web1_com" debug="0" reloadable="true"/>
</Host>

<Host name="
 <alias>yexiong.com</alias>
 <alias>yexiong</alias>
 <Context path="" docBase="D:\web\web2_com" debug="0" reloadable="true"/>
</Host>
#************************************************************************

Yexiong 2005-06-06 17:05 发表评论
]]>
讨h喜欢?8个原?/title><link>http://www.aygfsteel.com/yexiong/archive/2005/06/03/5502.html</link><dc:creator>Yexiong</dc:creator><author>Yexiong</author><pubDate>Fri, 03 Jun 2005 01:51:00 GMT</pubDate><guid>http://www.aygfsteel.com/yexiong/archive/2005/06/03/5502.html</guid><wfw:comment>http://www.aygfsteel.com/yexiong/comments/5502.html</wfw:comment><comments>http://www.aygfsteel.com/yexiong/archive/2005/06/03/5502.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/yexiong/comments/commentRss/5502.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/yexiong/services/trackbacks/5502.html</trackback:ping><description><![CDATA[<P>  1.长相不o厌,如果长得不好Q就让自己有才气Q如果才气也没有Q那L微笑?BR>  <BR>  2.气质是关键。如果时学不好Q宁愿纯朴?BR>  <BR>  3.与h握手Ӟ可多握一会儿。真诚是宝?BR>  <BR>  4.不必什么都用“我”做主语?BR>  <BR>  5.不要向朋友借钱?BR>  <BR>  6.不要“逼”客人看你的家庭相册?BR>  <BR>  7.与h打“的”时Q请抢先坐在司机旁?BR>  <BR>  8.坚持在背后说别h好话Q别担心q好话传不到当事x里?BR>  <BR>  9.有h在你面前说某人坏话时Q你只微W?BR>  <BR>  10.自己开RQ不要特地停下来和一个骑自行车的同事打招呹{h家会以ؓ你在炫耀?BR>  <BR>  11.同事生病ӞL望他。很自然地坐在他病床上,回家再认真洗手?BR>  <BR>  12.不要把过ȝ事全让h知道?BR>  <BR>  13.敬不喜Ƣ你的h?BR>  <BR>  14.对事不对人;或对事无情,对h要有情;或做人第一Q做事其ơ?/P> <P>  15.自我批评总能让h怿Q自我表扬则不然?BR>  <BR>  16.没有什么东西比围观者们更能提高你的保龄球的成W了。所以,q_不要吝惜你的喝彩声?BR>  <BR>  17.不要把别人的好,视ؓ理所当然。要知道感恩?BR>  <BR>  18.榕树上的“八哥”在Ԍ只讲不听Q结果ؕ成一团。学会聆听?BR>  <BR>  19.重传达室里的师傅及搞卫生的阿姨?BR>  <BR>  20.说话的时候记得常用“我们”开头?BR>  <BR>  21.为每一位上台唱歌的人鼓掌?BR>  <BR>  22.有时要明知故问:你的L很贵吧!有时Q即使想问也不能问,比如Q你多大了?<BR>  <BR>  23.话多必失Qh多的场合说话?BR>  <BR>  24.把未出口的“不”改成:“这需要时间”、“我力”、“我不确定”、“当我决定后Q会l你打电话”…?BR>  <BR>  25.不要期望所有h都喜Ƣ你Q那是不可能的,让大多数人喜Ƣ就是成功的表现?BR>  <BR>  26.当然Q自p喜欢自己?BR>   <BR>  27.如果你在表演或者是讲演的时候,如果只要有一个h在听也要用心的l下去,即没有人喝采也要演Q因是你成功的道路,是你成功的摇,你不要看的h成功Q而是要你成功?BR>  <BR>  28.如果你看C个脓子还值得一看的话,那么你一定要回复Q因Z的回复会lhl箋前进的勇气,会给人很大的Ȁ励。同时也会让人感Ȁ你?<BR></P><img src ="http://www.aygfsteel.com/yexiong/aggbug/5502.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/yexiong/" target="_blank">Yexiong</a> 2005-06-03 09:51 <a href="http://www.aygfsteel.com/yexiong/archive/2005/06/03/5502.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> վ֩ģ壺 <a href="http://" target="_blank">Ͷ</a>| <a href="http://" target="_blank">ʩ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ɽʡ</a>| <a href="http://" target="_blank">Զ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ʳ</a>| <a href="http://" target="_blank">лͨ</a>| <a href="http://" target="_blank">ұ</a>| <a href="http://" target="_blank">¬</a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank">ʲ</a>| <a href="http://" target="_blank">ʼ</a>| <a href="http://" target="_blank">첼</a>| <a href="http://" target="_blank">Ϫ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">̩</a>| <a href="http://" target="_blank">Ҷ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">޻</a>| <a href="http://" target="_blank">ʯ¥</a>| <a href="http://" target="_blank">Դ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ʲ</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>