??xml version="1.0" encoding="utf-8" standalone="yes"?>人成在线免费视频,欧美日韩亚洲高清,国产精品一在线观看http://www.aygfsteel.com/dingdangxiaoma/category/30768.htmlzh-cnWed, 07 May 2008 15:49:01 GMTWed, 07 May 2008 15:49:01 GMT60Java split 与StringTokenizerhttp://www.aygfsteel.com/dingdangxiaoma/articles/198996.html叮当马叮当马Wed, 07 May 2008 08:30:00 GMThttp://www.aygfsteel.com/dingdangxiaoma/articles/198996.htmlhttp://www.aygfsteel.com/dingdangxiaoma/comments/198996.htmlhttp://www.aygfsteel.com/dingdangxiaoma/articles/198996.html#Feedback0http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/198996.htmlhttp://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/198996.html 今天用到了些字符串分割函数及?br /> split ,
e.g.  "2,3,4,5".split(",")Q返回一个字W串数组?br /> StringTokenizer
e.g.
StringTokenizer st = new StringTokenizer("2,3,5", ",");
        while (st.hasMoreTokens()) {
            System.out.println(st.nextToken());
        }

对于$为间隔的处理?br /> "2$3$4$5".split("$");则不能进行处理。不提示M的错误,是没有得到预想的结果?br /> 而StringTokenizer 则能q行处理?br /> q是一个小的发玎ͼq没有发现具体的是怎么一回事 Q呵?br /> 以后写程序一定要注意了,要先q行试Q然后再写页面上的程序。对自己熟习的方法,cd也是一P也许存在着你想不到的结?呢?br />



叮当马 2008-05-07 16:30 发表评论
]]>
存入数据库中的图?如何dhttp://www.aygfsteel.com/dingdangxiaoma/articles/197835.html叮当马叮当马Sat, 03 May 2008 01:23:00 GMThttp://www.aygfsteel.com/dingdangxiaoma/articles/197835.htmlhttp://www.aygfsteel.com/dingdangxiaoma/comments/197835.htmlhttp://www.aygfsteel.com/dingdangxiaoma/articles/197835.html#Feedback0http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/197835.htmlhttp://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/197835.html 以sql server ZQ?br /> 在数据库中存储图片用的是image 字段Q?我们在用hibernate 做映时Q把q个字段映射为byte[]
把保存到数据库中的图片,输出到页面也׃的形式展示出来。这里以servlet ZQ?br />
public void doGet(HttpServletRequest request, HttpServletResponse response)
            
throws ServletException, IOException {
            Map session
= ActionContext.getContext().getSession();
            response.setContentType(
"image/jpeg");
            OutputStream out 
= null;
            out 
= response.getOutputStream();
            out.write((
byte [])session.get("images"));
            out.flush();
            out.close();
    }
上述的例子是q行struts2 中sessionQ里面存储了byte[]的images .
q样?jsp或是html面中真接用<image src ="" /> 在src 部分写上servlet的链接地址可以了?br />


叮当马 2008-05-03 09:23 发表评论
]]>
Java 文g操作http://www.aygfsteel.com/dingdangxiaoma/articles/197661.html叮当马叮当马Thu, 01 May 2008 09:04:00 GMThttp://www.aygfsteel.com/dingdangxiaoma/articles/197661.htmlhttp://www.aygfsteel.com/dingdangxiaoma/comments/197661.htmlhttp://www.aygfsteel.com/dingdangxiaoma/articles/197661.html#Feedback0http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/197661.htmlhttp://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/197661.html Java Ҏ件的操作有很多种ҎQ类也很多,q里丑և最单的试例子Q读取文件输入输出数据库操作?br /> 以下是部分源代码Q?br />
package com.zh.wsdy.dao;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;

import com.zh.wsdy.model.AjPrgWsmb;
import com.zh.wsdy.model.BaseHibernateDAO;
import com.zh.wsdy.model.Wtest;

//试d文g及读文g到数据库中。。?/span>
public class TestDAO extends BaseHibernateDAO {
    
private static final int BUFFER_SIZE = 16 * 1024;

    
public TestDAO() {

    }

    
/**
     * 试E序Q把d一个文Ӟ把个文g的内容,以字节的形式保存到数据中厅R?br />      
*/
    
public void saveFileStreamToDataBase(String id) {
        
// 先进q行数据库方面的操作。连接及新徏cR?/span>
        Session session = getSession();
        Wtest test 
= new Wtest(id);

        
// 以下是文件的定义?/span>
        File file = new File("c:" + File.separator + "response.txt");
        
// File file = new File("c:" + File.separator + "a.java");
        
// File file = new File("c:" + File.separator + "word.doc");

        
try {
            FileInputStream inputStream 
= new FileInputStream(file);
            BufferedInputStream bufferedInputStream 
= new BufferedInputStream(
                    inputStream);
            
byte[] buffer = new byte[BUFFER_SIZE];
            
while (bufferedInputStream.read(buffer) > 0) {
                test.setWcontent(buffer);
            }
            Transaction trac 
= session.beginTransaction();
            trac.begin();
            session.save(test);
            System.out.println(
"插入一条数据成?img src="http://www.aygfsteel.com/Images/dot.gif" alt="" />.");
            trac.commit();
        } 
catch (Exception e) {
            e.printStackTrace();
        }
    }

    
/**
     * 传递主键参敎ͼ从数据库中读取数据?br />      * 
     * 
@param id
     
*/
    
public void ReadDataBaseStreamToString(String id) {
        Session session 
= getSession();
        Query query 
= session.createQuery("from AjPrgZdms m where m.FId =:id");
        
// Query query = session.createQuery("from Wtest t where t.wid =:id ");
        query.setString("id", id);
        AjPrgWsmb test 
= (AjPrgWsmb) query.list().get(0);
        
// Wtest test = (Wtest)query.list().get(0);
        
// byte [] content = test.getWcontent();
        byte[] content = test.getFWsys();
        System.out.print(content); 
// 在这里直接输出字节,没有q行字符串的转换?br />         // String contentString = new String(content); //q行转换Q把字节转换成String
        
// System.out.print("the String is : "+contentString);
    }

    
/**
     * 从数据库dbyte型数据,写入当地文gQ看一下,写入与原始文件的差别?br />      * 
     * 
@param id
     
*/
    
public void writeFileFromDataBase(String id) {
        Session session 
= getSession();
        Query query 
= session.createQuery("from Wtest t  where t.wid =:id");
        query.setString(
"id", id);
        Wtest test 
= (Wtest) query.list().get(0);
        
byte[] content = test.getWcontent();
        
try {
            BufferedOutputStream out 
= new BufferedOutputStream(
                    
new FileOutputStream("c:\\word2.doc"));
            out.write(content);
            System.out.println(
"从数据库中读取数据,q写入相应的文g中。。?/span>");
        } 
catch (Exception e) {
            
// TODO Auto-generated catch block
            e.printStackTrace();
        }
        
// System.out.print(content); //在这里直接输出字节,没有q行字符串的转换?/span>
    }

    
/**
     * q个试的方法是Q从AjPrgWsmb表中Q读取数据,写入到相应的文g中去?br />      * 
     * 
@param id
     
*/
    
public void writeFile(String id) {
        Session session 
= getSession();
        Query query 
= session.createQuery("from AjPrgWsmb m where m.FId =:id");
        
// Query query = session.createQuery("from Wtest t where t.wid =:id ");
        query.setString("id", id);
        AjPrgWsmb test 
= (AjPrgWsmb) query.list().get(0);
        
// Wtest test = (Wtest)query.list().get(0);
        
// byte [] content = test.getWcontent();
        
//byte[] content = test.getFWsys();
        byte[] content = test.getFContent();
        
if(content!=null){
        
try {
            BufferedOutputStream out 
= new BufferedOutputStream(
                    
new FileOutputStream("c:\\word2.doc"));
            out.write(content);
            System.out.println(
"从数据库中读取数据,q写入相应的文g中。。?/span>");
        } 
catch (Exception e) {
            
// TODO Auto-generated catch block
            e.printStackTrace();
        }
        }
else{
            System.out.println(
"q个文书模板样式为空倹{。。。?/span>");
        }
    }

    
/**
     * 
@param args
     
*/
    
public static void main(String[] args) {
        TestDAO test 
= new TestDAO();
        
// test.saveFileStreamToDataBase("txt"); // 保存一条数据到数据库中Q主键ؓtxt,word,java
        
// test.ReadDataBaseStreamToString("word");
        
// test.writeFileFromDataBase("0000000010");
        test.writeFile("0000000023");

    }

}
以上的例子很单,是一些普通的文g的操盘?br />

叮当马 2008-05-01 17:04 发表评论
]]>
Html table 表格Ҏ样式http://www.aygfsteel.com/dingdangxiaoma/articles/197241.html叮当马叮当马Tue, 29 Apr 2008 06:32:00 GMThttp://www.aygfsteel.com/dingdangxiaoma/articles/197241.htmlhttp://www.aygfsteel.com/dingdangxiaoma/comments/197241.htmlhttp://www.aygfsteel.com/dingdangxiaoma/articles/197241.html#Feedback0http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/197241.htmlhttp://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/197241.html 今天整理他们的资料:
     设计自己的表D框样?br /> 在table 定义下加如下样式?br /> style="border-collapse:collapse;" bordercolor="threeddarkshadow"

q样的边框样式,在firefox ,IE中,都表C的不错?br />


叮当马 2008-04-29 14:32 发表评论
]]>
再如何面象对象也不能解决问题 -- 设计自己的后台管理程?/title><link>http://www.aygfsteel.com/dingdangxiaoma/articles/197234.html</link><dc:creator>叮当马</dc:creator><author>叮当马</author><pubDate>Tue, 29 Apr 2008 06:24:00 GMT</pubDate><guid>http://www.aygfsteel.com/dingdangxiaoma/articles/197234.html</guid><wfw:comment>http://www.aygfsteel.com/dingdangxiaoma/comments/197234.html</wfw:comment><comments>http://www.aygfsteel.com/dingdangxiaoma/articles/197234.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/197234.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/197234.html</trackback:ping><description><![CDATA[2008q??9?nbsp; Edited By DingDangXiaoMa<br />  今天ȝ他们写的E序Q深有感触?br /> 在Y件设计开发过E中QM有客户修攚w求的时候,如何面对q些变化Q如何自己的程序尽快的辑ֈ客户满意的程度?br /> 如设计数据库来说Q预先设计出几个字段Q如果又再添加,或是修改几个字段Q这该如何去处理呢。那好我们可以打开hibernate 的映及cLӞ最不过了,重C用工具发布一下,再重新发布程序,更新E序Q这样完全可以解决问题,但是如果q样的事Ӟ频繁发生怎么办,总要q么做,而且你的增加Q删除,修改的操作,都要重新dQ如果操作不当动了其它地方,我想后果也是很严重的了呢?br />     深深的去思烦Q也没有什么其它办法来处理。只能自己去修改q些内容了?br />     设计一个字D表Q里面记录所有表的字D信息,以便以前Q增加,删除Q修改的操作?br /> 待箋吧,今天写不下去了。。。。?br /> <br /> <br /> <img src ="http://www.aygfsteel.com/dingdangxiaoma/aggbug/197234.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/dingdangxiaoma/" target="_blank">叮当马</a> 2008-04-29 14:24 <a href="http://www.aygfsteel.com/dingdangxiaoma/articles/197234.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Java cd,Ҏ反射http://www.aygfsteel.com/dingdangxiaoma/articles/194426.html叮当马叮当马Mon, 21 Apr 2008 01:07:00 GMThttp://www.aygfsteel.com/dingdangxiaoma/articles/194426.htmlhttp://www.aygfsteel.com/dingdangxiaoma/comments/194426.htmlhttp://www.aygfsteel.com/dingdangxiaoma/articles/194426.html#Feedback0http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/194426.htmlhttp://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/194426.html Java cd,Ҏ反射
/**
 * 试cd,Ҏ反射反射的例子?br />  * 
@author DingDangXiaoMa
 
*/
public class TestMethod {

    
/**
     * 不带参数的方法。被调用的方法?br />      
*/
    
public void test1() {
        System.out.println(
"in the method 1 ");
    }

    
/**
     * 主调Ҏ。由test2Ҏ调用test1()Q?br />      
*/
    
public void test2() {
        
try {
            Method method 
= getClass().getMethod("test1");
            method.invoke(
thisnew Object[]{});
        } 
catch (Exception ex) {
            System.out.println(
"无法扑ֈҎ?/span>");
        }
    }

    
/**
     *带参数的被调Ҏ?nbsp;test1
     * 打印Z递过来的参数?br />      * 
@param ss
     
*/
    
public void test1(String ss) {
        System.out.println(ss);
    }

    
/**
     * 调用带参数的Ҏtest1(String ss);
     * 参数为String cd
     
*/
    
public void t() {
        
try {
            Method method 
= getClass().getMethod("test1"new Class[]{
                java.lang.String.
class
            });
            method.invoke(
thisnew Object[]{
                
"aa"
            });
        } 
catch (Exception _ex) {
            
// printwriter.println("Method not supported");
            System.out.println("没有扑ֈҎ?/span>");
        }
    }

    
public static void main(String[] args) {
        TestMethod test 
= new TestMethod();
        test.t();  
//调用带参数的Ҏ?/span>
        test.test2();   //调用不带参数的方法?/span>
    }



叮当马 2008-04-21 09:07 发表评论
]]>
在网中捕获 400,500,403,404错误?/title><link>http://www.aygfsteel.com/dingdangxiaoma/articles/192410.html</link><dc:creator>叮当马</dc:creator><author>叮当马</author><pubDate>Sat, 12 Apr 2008 06:30:00 GMT</pubDate><guid>http://www.aygfsteel.com/dingdangxiaoma/articles/192410.html</guid><wfw:comment>http://www.aygfsteel.com/dingdangxiaoma/comments/192410.html</wfw:comment><comments>http://www.aygfsteel.com/dingdangxiaoma/articles/192410.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/dingdangxiaoma/comments/commentRss/192410.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/dingdangxiaoma/services/trackbacks/192410.html</trackback:ping><description><![CDATA[在写E序Ӟ别忘记给E序加上错误捕获处理?br /> 在web.xml中添加以下内容,捕获错误?br /> <div style="border: 1px solid #cccccc; padding: 4px 5px 4px 4px; background-color: #eeeeee; font-size: 13px; width: 98%;"><!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> --><span style="color: #000000;"> </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;">500</span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">location</span><span style="color: #000000;">>/</span><span style="color: #000000;">error.jsp</span><span style="color: #000000;"></</span><span style="color: #000000;">location</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;">400</span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">location</span><span style="color: #000000;">>/</span><span style="color: #000000;">index.jsp</span><span style="color: #000000;"></</span><span style="color: #000000;">location</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;">403</span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">location</span><span style="color: #000000;">>/</span><span style="color: #000000;">403</span><span style="color: #000000;">.jsp</span><span style="color: #000000;"></</span><span style="color: #000000;">location</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;">404</span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">code</span><span style="color: #000000;">></span><span style="color: #000000;"><br />         </span><span style="color: #000000;"><</span><span style="color: #000000;">location</span><span style="color: #000000;">>/</span><span style="color: #000000;">404</span><span style="color: #000000;">.jsp</span><span style="color: #000000;"></</span><span style="color: #000000;">location</span><span style="color: #000000;">></span><span style="color: #000000;"><br />     </span><span style="color: #000000;"></</span><span style="color: #000000;">error</span><span style="color: #000000;">-</span><span style="color: #000000;">page</span><span style="color: #000000;">></span></div> 500错误Q?服务器内部错误,或是E序有问题?br /> 400错误QURL 地址h错误?br /> 403错误Q权限错误?br /> 404错误Q客Lh的网不存在?br /> 癑ֺ上搜索的错误QHTTP:<br /> HTTP <br /> 1xx-信息提示 <br /> q些状态代码表CZ时的响应。客L在收到常规响应之前,应准备接收一个或多个1xx响应? <br /> 100-l箋? <br /> 101-切换协议? <br /> 2xx-成功 <br /> q类状态代码表明服务器成功地接受了客户端请求? <br /> 200-定。客Lh已成功? <br /> 201-已创建? <br /> 202-已接受? <br /> 203-非权威性信息? <br /> 204-无内宏V? <br /> 205-重置内容? <br /> 206-部分内容? <br /> 3xx-重定? <br /> 客户端浏览器必须采取更多操作来实现请求。例如,览器可能不得不h服务器上的不同的面Q或通过代理服务器重复该h? <br /> 301-对象已永久移赎ͼx久重定向? <br /> 302-对象已时移动? <br /> 304-未修攏V? <br /> 307-临时重定向? <br /> 4xx-客户端错? <br /> 发生错误Q客Lg有问题。例如,客户端请求不存在的页面,客户端未提供有效的n份验证信息?00-错误的请求? <br /> 401-讉K被拒l。IIS定义了许多不同的401错误Q它们指明更为具体的错误原因。这些具体的错误代码在浏览器中显C,但不在IIS日志中显C: <br /> 401.1-dp|? <br /> 401.2-服务器配|导致登录失败? <br /> 401.3-׃ACL对资源的限制而未获得授权? <br /> 401.4-{选器授权p|? <br /> 401.5-ISAPI/CGI应用E序授权p|? <br /> 401.7–讉K被Web服务器上的URL授权{略拒绝。这个错误代码ؓIIS6.0所专用? <br /> 403-止讉KQIIS定义了许多不同的403错误Q它们指明更为具体的错误原因Q? <br /> 403.1-执行讉K被禁止? <br /> 403.2-读访问被止? <br /> 403.3-写访问被止? <br /> 403.4-要求SSL? <br /> 403.5-要求SSL128? <br /> 403.6-IP地址被拒l? <br /> 403.7-要求客户端证书? <br /> 403.8-站点讉K被拒l? <br /> 403.9-用户数过多? <br /> 403.10-配置无效? <br /> 403.11-密码更改? <br /> 403.12-拒绝讉K映射表? <br /> 403.13-客户端证书被吊销? <br /> 403.14-拒绝目录列表? <br /> 403.15-出客户端访问许可? <br /> 403.16-客户端证书不受信L无效? <br /> 403.17-客户端证书已q期或尚未生效? <br /> 403.18-在当前的应用E序池中不能执行所h的URL。这个错误代码ؓIIS6.0所专用? <br /> 403.19-不能个应用程序池中的客户端执行CGI。这个错误代码ؓIIS6.0所专用? <br /> 403.20-Passportdp|。这个错误代码ؓIIS6.0所专用? <br /> 404-未找到? <br /> 404.0-Q无Q?#8211;没有扑ֈ文g或目录? <br /> 404.1-无法在所h的端口上讉KWeb站点? <br /> 404.2-Web服务扩展锁定{略L本请求? <br /> 404.3-MIME映射{略L本请求? <br /> 405-用来讉K本页面的HTTP谓词不被允许Q方法不被允许) <br /> 406-客户端浏览器不接受所h面的MIMEcd? <br /> 407-要求q行代理w䆾验证? <br /> 412-前提条gp|? <br /> 413–h实体太大? <br /> 414-hURI太长? <br /> 415–不支持的媒体cd? <br /> 416–所h的范围无法满? <br /> 417–执行p|? <br /> 423–锁定的错误? <br /> 5xx-服务器错? <br /> 服务器由于遇到错误而不能完成该h? <br /> 500-内部服务器错误? <br /> 500.12-应用E序正忙于在Web服务器上重新启动? <br /> 500.13-Web服务器太忙? <br /> 500.15-不允许直接请求Global.asa? <br /> 500.16–UNC授权凭据不正。这个错误代码ؓIIS6.0所专用? <br /> 500.18–URL授权存储不能打开。这个错误代码ؓIIS6.0所专用? <br /> 500.100-内部ASP错误? <br /> 501-늜值指定了未实现的配置? <br /> 502-Web服务器用作网x代理服务器时收到了无效响应? <br /> 502.1-CGI应用E序时? <br /> 502.2-CGI应用E序出错。application. <br /> 503-服务不可用。这个错误代码ؓIIS6.0所专用? <br /> 504-|关时? <br /> 505-HTTP版本不受支持? <br /> <br /> <img src ="http://www.aygfsteel.com/dingdangxiaoma/aggbug/192410.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/dingdangxiaoma/" target="_blank">叮当马</a> 2008-04-12 14:30 <a href="http://www.aygfsteel.com/dingdangxiaoma/articles/192410.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>