??xml version="1.0" encoding="utf-8" standalone="yes"?>红杏一区二区三区,aaa日本高清在线播放免费观看,99久精品视频在线观看视频http://www.aygfsteel.com/myfavorite/zh-cnFri, 20 Jun 2025 01:01:04 GMTFri, 20 Jun 2025 01:01:04 GMT60use CheckBoxMultipleChoice in wickethttp://www.aygfsteel.com/myfavorite/archive/2012/06/18/380978.htmlmyfavoritemyfavoriteSun, 17 Jun 2012 16:07:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2012/06/18/380978.htmlhttp://www.aygfsteel.com/myfavorite/comments/380978.htmlhttp://www.aygfsteel.com/myfavorite/archive/2012/06/18/380978.html#Feedback0http://www.aygfsteel.com/myfavorite/comments/commentRss/380978.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/380978.html 1         final CheckBoxMultipleChoice<String> resultlistChoice = new CheckBoxMultipleChoice<String>("resultlist", new PropertyModel<List<String>>(this, "valueList"), new PropertyModel<List<String>>(this, "list"));
 2 
 3         resultlistChoice.add(new AjaxFormComponentUpdatingBehavior("onclick") {
 4 
 5             @Override
 6             protected void onUpdate(AjaxRequestTarget target) {
 7                 // TODO Auto-generated method stub
 8             }
 9         });
10         
11         resultlistChoice.add(new AjaxFormChoiceComponentUpdatingBehavior() {
12             
13             @Override
14             protected void onUpdate(AjaxRequestTarget target) {
15                 // TODO Auto-generated method stub
16                 selectedList.clear();
17                 for (String item : resultlistChoice.getModelObject()) {
18                     selectedList.add(item);
19                     System.out.println(item);
20                 }
21                 target.add(selectedChoice);
22             }
23         });

myfavorite 2012-06-18 00:07 发表评论
]]>
Java获取汉字拼音或拼音首字母http://www.aygfsteel.com/myfavorite/archive/2012/04/18/375178.htmlmyfavoritemyfavoriteWed, 18 Apr 2012 13:58:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2012/04/18/375178.htmlhttp://www.aygfsteel.com/myfavorite/comments/375178.htmlhttp://www.aygfsteel.com/myfavorite/archive/2012/04/18/375178.html#Feedback8http://www.aygfsteel.com/myfavorite/comments/commentRss/375178.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/375178.html
package com;

import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
import net.sourceforge.pinyin4j.format.HanyuPinyinToneType;
import net.sourceforge.pinyin4j.format.HanyuPinyinVCharType;
import net.sourceforge.pinyin4j.format.exception.BadHanyuPinyinOutputFormatCombination;

public class GetPinyin {

    /**
     * 得到 全拼
     * 
     * 
@param src
     * 
@return
     
*/
    public static String getPingYin(String src) {
        char[] t1 = null;
        t1 = src.toCharArray();
        String[] t2 = new String[t1.length];
        HanyuPinyinOutputFormat t3 = new HanyuPinyinOutputFormat();
        t3.setCaseType(HanyuPinyinCaseType.LOWERCASE);
        t3.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
        t3.setVCharType(HanyuPinyinVCharType.WITH_V);
        String t4 = "";
        int t0 = t1.length;
        try {
            for (int i = 0; i < t0; i++) {
                // 判断是否为汉字字W?/span>
                if (java.lang.Character.toString(t1[i]).matches("[\\u4E00-\\u9FA5]+")) {
                    t2 = PinyinHelper.toHanyuPinyinStringArray(t1[i], t3);
                    t4 += t2[0];
                } else {
                    t4 += java.lang.Character.toString(t1[i]);
                }
            }
            return t4;
        } catch (BadHanyuPinyinOutputFormatCombination e1) {
            e1.printStackTrace();
        }
        return t4;
    }

    /**
     * 得到中文首字?br />     * 
     * 
@param str
     * 
@return
     
*/
    public static String getPinYinHeadChar(String str) {

        String convert = "";
        for (int j = 0; j < str.length(); j++) {
            char word = str.charAt(j);
            String[] pinyinArray = PinyinHelper.toHanyuPinyinStringArray(word);
            if (pinyinArray != null) {
                convert += pinyinArray[0].charAt(0);
            } else {
                convert += word;
            }
        }
        return convert;
    }

    /**
     * 字W串转移为ASCII?br />     * 
     * 
@param cnStr
     * 
@return
     
*/
    public static String getCnASCII(String cnStr) {
        StringBuffer strBuf = new StringBuffer();
        byte[] bGBK = cnStr.getBytes();
        for (int i = 0; i < bGBK.length; i++) {
            // System.out.println(Integer.toHexString(bGBK[i]&0xff));
            strBuf.append(Integer.toHexString(bGBK[i] & 0xff));
        }
        return strBuf.toString();
    }

    public static void main(String[] args) {

        String cnStr = "戬浜";
        System.out.println(getPingYin(cnStr));
        System.out.println(getPinYinHeadChar(cnStr));
    }

}
pinyin4j-2.5.0.jar


myfavorite 2012-04-18 21:58 发表评论
]]>
jdbc讉K数据?/title><link>http://www.aygfsteel.com/myfavorite/archive/2010/11/02/336845.html</link><dc:creator>myfavorite</dc:creator><author>myfavorite</author><pubDate>Tue, 02 Nov 2010 12:36:00 GMT</pubDate><guid>http://www.aygfsteel.com/myfavorite/archive/2010/11/02/336845.html</guid><wfw:comment>http://www.aygfsteel.com/myfavorite/comments/336845.html</wfw:comment><comments>http://www.aygfsteel.com/myfavorite/archive/2010/11/02/336845.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/myfavorite/comments/commentRss/336845.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/myfavorite/services/trackbacks/336845.html</trackback:ping><description><![CDATA[<p>jdbc讉K数据?/p> <p>1 数据库的JDBC驱动加蝲到classpath中,在基于JAVAEE的WEB应用实际开发过E中Q通常要把目标数据库品的JDBC驱动复制到WEB-INF/lib? <br /> 2 加蝲JDBC驱动Qƈ其注册到DriverManager中;<br /> 3 建立数据库连接,取得Connection对象.例如: <br /> MySQLQ?nbsp;   <br />     String Driver="com.mysql.jdbc.Driver";    //驱动E序 <br />     String URL="jdbc:mysql://localhost:3306/db_name";    //q接的URL,db_name为数据库?nbsp;   <br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).new Instance(); <br />     Connection con=DriverManager.getConnection(URL,Username,Password); </p> <p>Microsoft SQL Server驱动(msbase.jar、mssqlserver.jar、msutil.jar): <br />     String Driver="com.microsoft.jdbc.sqlserver.SQLServerDriver";    //q接SQL数据库的Ҏ <br />     String URL="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=db_name";    //db_name为数据库?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).new Instance();    //加蝲数据驱动 <br />     Connection con=DriverManager.getConnection(URL,UserName,Password);  </p> <p>Microsoft SQL Server驱动(jtds-1.2.jar): <br />     String Driver="net.sourceforge.jtds.jdbc.Driver";    //q接SQL数据库的Ҏ <br />     String URL="jdbc:jtds:sqlserver://localhost:1433/db_name;s=8.0;lastupdatecount=true";    //db_name为数据库?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).new Instance();    //加蝲数据驱动 <br />     Connection con=DriverManager.getConnection(URL,UserName,Password);  </p> <p>Sysbase: <br />     String Driver="com.sybase.jdbc.SybDriver";    //驱动E序 <br />     String URL="jdbc:Sysbase://localhost:5007/db_name";    //db_name为数据可?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).newInstance();    <br />     Connection con=DriverManager.getConnection(URL,Username,Password); </p> <p>Sysbase: <br />   String url="jdbc:sybase:Tds:localhost:5007/tsdata"; <br />   Properties sysProps=System.getProperties(); <br />   SysProps.put("user","userid"); <br />   SysProps.put("password","user_password"); <br />   Connection conn=DriverManager.getConnection(url,SysProps); </p> <p>Oracle(用thin模式): <br />     String Driver="oracle.jdbc.driver.OracleDriver";    //q接数据库的Ҏ <br />     String URL="jdbc:oracle:thin:@loaclhost:1521:orcl";    //orcl为数据库的SID <br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).newInstance();    //加蝲数据库驱?<br />     Connection con=DriverManager.getConnection(URL,Username,Password);    </p> <p>PostgreSQL: <br />     String Driver="org.postgresql.Driver";    //q接数据库的Ҏ <br />     String URL="jdbc:postgresql://localhost/db_name";    //db_name为数据可?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).newInstance();    <br />     Connection con=DriverManager.getConnection(URL,Username,Password); </p> <p>DB2Q?<br />     String Driver="com.ibm.db2.jdbc.app.DB2.Driver";    //q接hDB2客户端的Provider实例 <br />     //String Driver="com.ibm.db2.jdbc.net.DB2.Driver";    //q接不具有DB2客户端的Provider实例 <br />     String URL="jdbc:db2://localhost:5000/db_name";    //db_name为数据可?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).newInstance();    <br />     Connection con=DriverManager.getConnection(URL,Username,Password); </p> <p>Informix: <br />     String Driver="com.informix.jdbc.IfxDriver";    <br />     String URL="jdbc:Informix-sqli://localhost:1533/db_name:INFORMIXSER=myserver";    //db_name为数据可?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).newInstance();    <br />     Connection con=DriverManager.getConnection(URL,Username,Password); </p> <p>JDBC-ODBC: <br />     String Driver="sun.jdbc.odbc.JdbcOdbcDriver"; <br />     String URL="jdbc:odbc:dbsource";    //dbsource为数据源?<br />     String Username="username";    //用户?<br />     String Password="password";    //密码 <br />     Class.forName(Driver).newInstance();    <br />     Connection con=DriverManager.getConnection(URL,Username,Password); </p> <p>4 建立Statement对象或PreparedStatement对象.例如Q?<br />   //建立Statement对象 <br />   Statement stmt=conn.createStatement(); <br />   //建立ProparedStatement对象 <br />   String sql="select * from user where userName=? and password=?"; <br />   PreparedStatement pstmt=Conn.prepareStatement(sql); <br />   pstmt.setString(1,"admin"); <br />   pstmt.setString(2,"liubin"); <br /> 5 执行SQL语句.例如Q?<br />   String sql="select * from users"; <br />   ResultSet rs=stmt.executeQuery(sql); <br />   //执行动态SQL查询 <br />   ResultSet rs=pstmt.executeQuery(); <br />   //执行insert update delete{语句,先定义sql <br />   stmt.executeUpdate(sql); <br /> 6 讉Kl果记录集ResultSet对象。例如: <br />   while(rs.next) <br />   { <br />   out.println("你的W一个字D内容ؓQ?+rs.getString()); <br />   out.println("你的W二个字D内容ؓQ?+rs.getString(2)); <br />   } <br /> 7 依次ResultSet、Statement、PreparedStatement、Connection对象关闭Q释放所占用的资?例如: <br />   rs.close(); <br />   stmt.clost(); <br />   pstmt.close(); <br />   con.close(); </p> <img src ="http://www.aygfsteel.com/myfavorite/aggbug/336845.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/myfavorite/" target="_blank">myfavorite</a> 2010-11-02 20:36 <a href="http://www.aygfsteel.com/myfavorite/archive/2010/11/02/336845.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>javaq接MSSQLhttp://www.aygfsteel.com/myfavorite/archive/2010/10/26/336209.htmlmyfavoritemyfavoriteTue, 26 Oct 2010 11:28:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2010/10/26/336209.htmlhttp://www.aygfsteel.com/myfavorite/comments/336209.htmlhttp://www.aygfsteel.com/myfavorite/archive/2010/10/26/336209.html#Feedback0http://www.aygfsteel.com/myfavorite/comments/commentRss/336209.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/336209.html 

    // 驱动Q?nbsp;msbase.jar ?nbsp;mssqlserver.jar ?nbsp;msutil.jar
    
// driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    
// url = "jdbc:microsoft:sqlserver://192.168.0.82:1433;databasename=JFGLD";

    
// 驱动Qjtds-1.2.jar
    
// DB.DRIVER=net.sourceforge.jtds.jdbc.Driver
    
// DB.URL=jdbc:jtds:sqlserver://localhost:1433/数据库名;s=8.0;lastupdatecount=true


myfavorite 2010-10-26 19:28 发表评论
]]>
java InputStreamd数据问题http://www.aygfsteel.com/myfavorite/archive/2010/10/19/335606.htmlmyfavoritemyfavoriteTue, 19 Oct 2010 10:41:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2010/10/19/335606.htmlhttp://www.aygfsteel.com/myfavorite/comments/335606.htmlhttp://www.aygfsteel.com/myfavorite/archive/2010/10/19/335606.html#Feedback0http://www.aygfsteel.com/myfavorite/comments/commentRss/335606.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/335606.html1. 关于InputStream.read()
     在从数据里d数据Ӟ为图单,l常用InputStream.read()Ҏ。这个方法是从流里每ơ只dd一个字节,效率会非怽?nbsp;    更好的方法是用InputStream.read(byte[] b)或者InputStream.read(byte[] b,int off,int len)ҎQ一ơ读取多个字节?/p>


2. 关于InputStreamcȝavailable()Ҏ
    要一ơ读取多个字节时Q经常用到InputStream.available()ҎQ这个方法可以在d操作前先得知数据里有多个字节可以d。需要注意的是,如果q个Ҏ用在从本
地文件读取数据时Q一般不会遇到问题,但如果是用于|络操作Q就l常会遇C些麻烦。比如,Socket通讯ӞҎ明明发来?000个字节,但是自己的程序调用available()Ҏ却只得到900Q或?00Q甚x0Q感觉有点莫名其妙,怎么也找不到原因。其实,q是因ؓ|络通讯往往是间断性的Q一串字节往往分几批进行发送。本地程序调用available()Ҏ有时得到0Q这可能是对方还没有响应Q也可能是对方已l响应了Q但是数据还没有送达本地。对方发送了1000个字节给你,也许分成3批到达,q你p调用3ơavailable()Ҏ才能数据L全部得到?br />       如果q样写代码:
  int count = in.available();
  byte[] b = new byte[count];
  in.read(b);
      在进行网l操作时往往出错Q因Z调用available()ҎӞ对发发送的数据可能q没有到达,你得到的count??br />          需要改成这P
  int count = 0;
  while (count == 0) {
   count = in.available();
  }
  byte[] b = new byte[count];
  in.read(b);
3. 关于InputStream.read(byte[] b)和InputStream.read(byte[] b,int off,int len)q两个方法都是用来从里d多个字节的,有经验的E序员就会发玎ͼq两个方法经?d不到自己惌d的个数的字节。比如第一个方法,E序员往往希望E序能读取到b.length个字节,而实际情冉|Q系l往往d不了q么多。仔l阅读Java的API说明发CQ这个方?q不保证能读取这么多个字节,它只能保证最多读取这么多个字?最??。因此,如果要让E序dcount个字节,最好用以下代码Q?br />   byte[] b = new byte[count];
  int readCount = 0; // 已经成功d的字节的个数
  while (readCount < count) {
   readCount += in.read(bytes, readCount, count - readCount);
  }
      用这D代码可以保证读取count个字节,除非中途遇到IO异常或者到了数据流的结?EOFException)



myfavorite 2010-10-19 18:41 发表评论
]]>
MyEclipse中防止代码格式化时出现换行的情况的设|?/title><link>http://www.aygfsteel.com/myfavorite/archive/2010/10/19/335605.html</link><dc:creator>myfavorite</dc:creator><author>myfavorite</author><pubDate>Tue, 19 Oct 2010 10:34:00 GMT</pubDate><guid>http://www.aygfsteel.com/myfavorite/archive/2010/10/19/335605.html</guid><wfw:comment>http://www.aygfsteel.com/myfavorite/comments/335605.html</wfw:comment><comments>http://www.aygfsteel.com/myfavorite/archive/2010/10/19/335605.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/myfavorite/comments/commentRss/335605.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/myfavorite/services/trackbacks/335605.html</trackback:ping><description><![CDATA[<p>~辑完成代码Q用MyEclipse的代码格式化后,本来不长的代码也被自动{成了多行。虽然自动换行以后在~辑器中一眼就能看到全部的代码Q但是可L却大打折扣Q避免出现这U情늚办法是: </p> <p>1.Java代码 </p> <p>打开Eclipse的Window菜单Q然后Preferences->Java->Code Style->Formatter->Edit/Show(Ҏ不同版本可用的按钮会不一? ->Line Wrapping->Maximum line width:由默认的80Ҏ自己惌讑֮的长?/p> <p>2.Html代码 </p> <p>Window->Preferences->MyEclipse->Files and Editors->Html->Html Source->Line width->加个0以后保存?</p> <p>3.xml代码 </p> <p>Window->Preferences->MyEclipse->Files and Editors->xml->xml Source->->Line width->999 </p> <img src ="http://www.aygfsteel.com/myfavorite/aggbug/335605.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/myfavorite/" target="_blank">myfavorite</a> 2010-10-19 18:34 <a href="http://www.aygfsteel.com/myfavorite/archive/2010/10/19/335605.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Java实现监控多个U程状态的实现http://www.aygfsteel.com/myfavorite/archive/2010/10/15/335265.htmlmyfavoritemyfavoriteFri, 15 Oct 2010 12:28:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2010/10/15/335265.htmlhttp://www.aygfsteel.com/myfavorite/comments/335265.htmlhttp://www.aygfsteel.com/myfavorite/archive/2010/10/15/335265.html#Feedback0http://www.aygfsteel.com/myfavorite/comments/commentRss/335265.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/335265.html
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;

/**
 * 试监控c?br />  * 
 * 
@author
 * 
 
*/
public class WatchThread {

    
/**
     * 试函数
     * 
     * 
@throws InterruptedException
     
*/
    
public void testThread() throws InterruptedException {
        
int threadNum = 10;
        
// 初始化countDown
        CountDownLatch threadSignal = new CountDownLatch(threadNum);
        
// 创徏固定长度的线E池
        Executor executor = Executors.newFixedThreadPool(threadNum);
        
for (int i = 0; i < threadNum; i++) { // 开threadNum个线E?/span>
            Runnable task = new TestThread(threadSignal);
            
// 执行
            executor.execute(task);
        }
        threadSignal.await(); 
// {待所有子U程执行?br />         // do work
        System.out.println(Thread.currentThread().getName() + "+++++++l束.");
    }

    
/**
     * 试函数
     
*/
    
public static void main(String[] args) throws InterruptedException {
        WatchThread test 
= new WatchThread();
        test.testThread();
    }

    
/**
     * 
     * 
@author jill
     * 
     
*/
    
private class TestThread implements Runnable {
        
private CountDownLatch threadsSignal;

        
public TestThread(CountDownLatch threadsSignal) {
            
this.threadsSignal = threadsSignal;
        }

        
public void run() {
            System.out.println(Thread.currentThread().getName() 
+ "开?img src="http://www.aygfsteel.com/Images/dot.gif" alt="" />");
            
// do shomething
            System.out.println("开始了U程Q:Q:" + threadsSignal.getCount());
            
// U程l束时计数器?
            threadsSignal.countDown();
            System.out.println(Thread.currentThread().getName() 
+ "l束. q有"
                    
+ threadsSignal.getCount() + " 个线E?/span>");
        }
    }

}


myfavorite 2010-10-15 20:28 发表评论
]]>
Java定时器代?/title><link>http://www.aygfsteel.com/myfavorite/archive/2010/10/15/335257.html</link><dc:creator>myfavorite</dc:creator><author>myfavorite</author><pubDate>Fri, 15 Oct 2010 10:14:00 GMT</pubDate><guid>http://www.aygfsteel.com/myfavorite/archive/2010/10/15/335257.html</guid><wfw:comment>http://www.aygfsteel.com/myfavorite/comments/335257.html</wfw:comment><comments>http://www.aygfsteel.com/myfavorite/archive/2010/10/15/335257.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/myfavorite/comments/commentRss/335257.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/myfavorite/services/trackbacks/335257.html</trackback:ping><description><![CDATA[<p> </p> <div style="border-right: #cccccc 1px solid; padding-right: 5px; border-top: #cccccc 1px solid; padding-left: 4px; font-size: 13px; padding-bottom: 4px; border-left: #cccccc 1px solid; width: 98%; word-break: break-all; padding-top: 4px; border-bottom: #cccccc 1px solid; background-color: #eeeeee"><span style="color: #008000">/*</span><span style="color: #008000">Java定时器代?/span><span style="color: #008000">*/</span><span style="color: #000000"><br /> </span><span style="color: #0000ff">import</span><span style="color: #000000"> java.util.Timer;<br /> </span><span style="color: #0000ff">import</span><span style="color: #000000"> java.util.TimerTask;<br /> <br /> </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">class</span><span style="color: #000000"> TryTimer {<br />     </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">static</span><span style="color: #000000"> </span><span style="color: #0000ff">void</span><span style="color: #000000"> main(String[] args) {<br />         Timer timer </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #0000ff">new</span><span style="color: #000000"> Timer();<br />         timer.schedule(</span><span style="color: #0000ff">new</span><span style="color: #000000"> TimerTask() {<br />             </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">void</span><span style="color: #000000"> run() {<br />                 System.out.println(</span><span style="color: #000000">"</span><span style="color: #000000">test</span><span style="color: #000000">"</span><span style="color: #000000">);<br />             }<br />         }, </span><span style="color: #000000">0</span><span style="color: #000000">, </span><span style="color: #000000">1000</span><span style="color: #000000">);</span><span style="color: #008000">//</span><span style="color: #008000"> 0ms之后开始执行,每隔1000ms执行一?/span><span style="color: #008000"><br /> </span><span style="color: #000000">    }    <br /> }<br /> </span></div> <img src ="http://www.aygfsteel.com/myfavorite/aggbug/335257.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/myfavorite/" target="_blank">myfavorite</a> 2010-10-15 18:14 <a href="http://www.aygfsteel.com/myfavorite/archive/2010/10/15/335257.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>java下的日期函数实现http://www.aygfsteel.com/myfavorite/archive/2010/10/15/335212.htmlmyfavoritemyfavoriteFri, 15 Oct 2010 03:20:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2010/10/15/335212.htmlhttp://www.aygfsteel.com/myfavorite/comments/335212.htmlhttp://www.aygfsteel.com/myfavorite/archive/2010/10/15/335212.html#Feedback0http://www.aygfsteel.com/myfavorite/comments/commentRss/335212.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/335212.html阅读全文

myfavorite 2010-10-15 11:20 发表评论
]]>
javaU程池的应用http://www.aygfsteel.com/myfavorite/archive/2010/10/14/335115.htmlmyfavoritemyfavoriteThu, 14 Oct 2010 05:10:00 GMThttp://www.aygfsteel.com/myfavorite/archive/2010/10/14/335115.htmlhttp://www.aygfsteel.com/myfavorite/comments/335115.htmlhttp://www.aygfsteel.com/myfavorite/archive/2010/10/14/335115.html#Feedback0http://www.aygfsteel.com/myfavorite/comments/commentRss/335115.htmlhttp://www.aygfsteel.com/myfavorite/services/trackbacks/335115.html阅读全文

myfavorite 2010-10-14 13:10 发表评论
]]>
վ֩ģ壺 ͬ| ³| | | п| Ϫ| | պ| | | ƽ| ԭ| | | | | ɽ| | Ͽ| | | | ˮ| ƺ| | | ߶| ӳ| ̨| ƺ| | ˫| | | | | | ۩| ˮ| | Ϫ|