锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲欧美日韩中文无线码,亚洲综合无码一区二区痴汉,久久亚洲国产精品http://www.tkk7.com/airdream/category/12378.htmlJAVA DIARYzh-cnTue, 27 Feb 2007 08:40:23 GMTTue, 27 Feb 2007 08:40:23 GMT60quartz cron expressionhttp://www.tkk7.com/airdream/archive/2007/02/09/98941.htmlAIRDREAMAIRDREAMFri, 09 Feb 2007 03:02:00 GMThttp://www.tkk7.com/airdream/archive/2007/02/09/98941.htmlhttp://www.tkk7.com/airdream/comments/98941.htmlhttp://www.tkk7.com/airdream/archive/2007/02/09/98941.html#Feedback0http://www.tkk7.com/airdream/comments/commentRss/98941.htmlhttp://www.tkk7.com/airdream/services/trackbacks/98941.html A "Cron-Expression" is a string comprised of 6 or 7 fields separated by white space. The 6 mandatory and 1 optional fields are as follows:

Field Name Allowed Values Allowed Special Characters
Seconds 0-59 , - * /
Minutes 0-59 , - * /
Hours 0-23 , - * /
Day-of-month 1-31 , - * ? / L W C
Month 1-12 or JAN-DEC , - * /
Day-of-Week 1-7 or SUN-SAT , - * ? / L C #
Year (Optional) empty, 1970-2099 , - * /

The '*' character is used to specify all values. For example, "*" in the minute field means "every minute".

The '?' character is allowed for the day-of-month and day-of-week fields. It is used to specify 'no specific value'. This is useful when you need to specify something in one of the two fileds, but not the other. See the examples below for clarification.

The '-' character is used to specify ranges For example "10-12" in the hour field means "the hours 10, 11 and 12".

The ',' character is used to specify additional values. For example "MON,WED,FRI" in the day-of-week field means "the days Monday, Wednesday, and Friday".

The '/' character is used to specify increments. For example "0/15" in the seconds field means "the seconds 0, 15, 30, and 45". And "5/15" in the seconds field means "the seconds 5, 20, 35, and 50". You can also specify '/' after the '*' character - in this case '*' is equivalent to having '0' before the '/'.

The 'L' character is allowed for the day-of-month and day-of-week fields. This character is short-hand for "last", but it has different meaning in each of the two fields. For example, the value "L" in the day-of-month field means "the last day of the month" - day 31 for January, day 28 for February on non-leap years. If used in the day-of-week field by itself, it simply means "7" or "SAT". But if used in the day-of-week field after another value, it means "the last xxx day of the month" - for example "6L" means "the last friday of the month". When using the 'L' option, it is important not to specify lists, or ranges of values, as you'll get confusing results.

The 'W' character is allowed for the day-of-month field. This character is used to specify the weekday (Monday-Friday) nearest the given day. As an example, if you were to specify "15W" as the value for the day-of-month field, the meaning is: "the nearest weekday to the 15th of the month". So if the 15th is a Saturday, the trigger will fire on Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th. However if you specify "1W" as the value for day-of-month, and the 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not 'jump' over the boundary of a month's days. The 'W' character can only be specified when the day-of-month is a single day, not a range or list of days.

The 'L' and 'W' characters can also be combined for the day-of-month expression to yield 'LW', which translates to "last weekday of the month".

The '#' character is allowed for the day-of-week field. This character is used to specify "the nth" XXX day of the month. For example, the value of "6#3" in the day-of-week field means the third Friday of the month (day 6 = Friday and "#3" = the 3rd one in the month). Other examples: "2#1" = the first Monday of the month and "4#5" = the fifth Wednesday of the month. Note that if you specify "#5" and there is not 5 of the given day-of-week in the month, then no firing will occur that month.

The 'C' character is allowed for the day-of-month and day-of-week fields. This character is short-hand for "calendar". This means values are calculated against the associated calendar, if any. If no calendar is associated, then it is equivalent to having an all-inclusive calendar. A value of "5C" in the day-of-month field means "the first day included by the calendar on or after the 5th". A value of "1C" in the day-of-week field means "the first day included by the calendar on or after sunday".

The legal characters and the names of months and days of the week are not case sensitive.

Here are some full examples:

Expression Meaning
"0 0 12 * * ?" Fire at 12pm (noon) every day
"0 15 10 ? * *" Fire at 10:15am every day
"0 15 10 * * ?" Fire at 10:15am every day
"0 15 10 * * ? *" Fire at 10:15am every day
"0 15 10 * * ? 2005" Fire at 10:15am every day during the year 2005
"0 * 14 * * ?" Fire every minute starting at 2pm and ending at 2:59pm, every day
"0 0/5 14 * * ?" Fire every 5 minutes starting at 2pm and ending at 2:55pm, every day
"0 0/5 14,18 * * ?" Fire every 5 minutes starting at 2pm and ending at 2:55pm, AND fire every 5 minutes starting at 6pm and ending at 6:55pm, every day
"0 0-5 14 * * ?" Fire every minute starting at 2pm and ending at 2:05pm, every day
"0 10,44 14 ? 3 WED" Fire at 2:10pm and at 2:44pm every Wednesday in the month of March.
"0 15 10 ? * MON-FRI" Fire at 10:15am every Monday, Tuesday, Wednesday, Thursday and Friday
"0 15 10 15 * ?" Fire at 10:15am on the 15th day of every month
"0 15 10 L * ?" Fire at 10:15am on the last day of every month
"0 15 10 ? * 6L" Fire at 10:15am on the last Friday of every month
"0 15 10 ? * 6L" Fire at 10:15am on the last Friday of every month
"0 15 10 ? * 6L 2002-2005" Fire at 10:15am on every last friday of every month during the years 2002, 2003, 2004 and 2005
"0 15 10 ? * 6#3" Fire at 10:15am on the third Friday of every month

Pay attention to the effects of '?' and '*' in the day-of-week and day-of-month fields!

NOTES:

  • Support for the features described for the 'C' character is not complete.
  • Support for specifying both a day-of-week and a day-of-month value is not complete (you'll need to use the '?' character in on of these fields).
  • Be careful when setting fire times between mid-night and 1:00 AM - "daylight savings" can cause a skip or a repeat depending on whether the time moves back or jumps forward.


AIRDREAM 2007-02-09 11:02 鍙戣〃璇勮
]]>
涓や釜鏈夌敤鐨凙NT杈呭姪鍖?/title><link>http://www.tkk7.com/airdream/archive/2006/12/29/90689.html</link><dc:creator>AIRDREAM</dc:creator><author>AIRDREAM</author><pubDate>Fri, 29 Dec 2006 03:28:00 GMT</pubDate><guid>http://www.tkk7.com/airdream/archive/2006/12/29/90689.html</guid><wfw:comment>http://www.tkk7.com/airdream/comments/90689.html</wfw:comment><comments>http://www.tkk7.com/airdream/archive/2006/12/29/90689.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/airdream/comments/commentRss/90689.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/airdream/services/trackbacks/90689.html</trackback:ping><description><![CDATA[1銆?font size="4">Antelope</font><p class="logoH1">緗戝潃錛?a src="http://antelope.tigris.org/">http://antelope.tigris.org/</a></p><p>鎴戠敤鍒拌繃涓涓帶鍒舵椂闂寸殑<limit>鏍囩 <br /><br />2銆?font size="4">ant-contrib<br /></font><br />緗戝潃錛?a src="ant-contrib.sourceforge.net">ant-contrib.sourceforge.net</a><br /><br />鎴戠敤鍒拌繃<if><else><then>絳夐昏緫鏍囩銆?br /><br />涓嬮潰鏄垜鍐欑殑涓涓猘nt鐗囨柇錛岀敤鏉opy涓嶅瓨鍦ㄧ殑鏂囦歡錛屽鏋滃瓨鍦紝鍒欒闂槸鍚﹁鐩栥?br /><code>聽<!--聽 tasks for copy required system files --></code></limit></p><p>聽<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="../WEB-INF/lib/ant-contrib-1.0b2.jar" /></p><p>聽<target name="deploySysFiles"><br />聽聽<var name="targetFile" unset="true" /><br />聽聽<property name="targetFile" value="${JavaStatusSchemePath}" /><br />聽聽<var name="originalFile" unset="true"/><br />聽聽<property name="originalFile" value="${JavaStatusSchemePath-Original}"/><br />聽聽<antcall target="deploySysFile" /><br />聽</target></p><p>聽<target name="deploySysFile"><br />聽聽<echo>check file : ${targetFile} exist or not</echo><br />聽聽<available file="${targetFile}" property="targetFileExisting" /><br />聽聽<if><br />聽聽聽<not><br />聽聽聽聽<isset property="targetFileExisting" /><br />聽聽聽</not><br />聽聽聽<then><br />聽聽聽聽<antcall target="copyTargetFile" /><br />聽聽聽</then><br />聽聽聽<elseif><br />聽聽聽聽<isset property="targetFileExisting" /><br />聽聽聽聽<then><br />聽聽聽聽聽<antcall target="overrideTargetFile" /><br />聽聽聽聽</then><br />聽聽聽</elseif><br />聽聽</if><br />聽聽<echo>deploy system files over</echo><br />聽</target></p><p>聽<target name="overrideTargetFile"><br />聽聽<limit seconds="${timeoutSecond}"><br />聽聽聽<input validargs="y,n" addproperty="answer" defaultvalue="n" message="file '${targetFile}' already existed,do you want to override?" /><br />聽聽</limit><br />聽聽<condition property="override"><br />聽聽聽<equals arg1="y" arg2="${answer}" /><br />聽聽</condition><br />聽聽<if><br />聽聽聽<isset property="override" /><br />聽聽聽<then><br />聽聽聽聽<echo>override the file...</echo><br />聽聽聽聽<copy tofile="${targetFile}" file="${originalFile}" overwrite="true" encoding="ms932" /><br />聽聽聽</then><br />聽聽</if><br />聽</target><br />聽<target name="copyTargetFile"><br />聽聽<echo>file ${targetFile} dose not existed,deploying this file</echo><br />聽聽<copy file="${originalFile}" tofile="${targetFile}" encoding="ms932" /><br />聽</target><br />聽<!-- end copy system files. --><br /><br /></p><img src ="http://www.tkk7.com/airdream/aggbug/90689.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/airdream/" target="_blank">AIRDREAM</a> 2006-12-29 11:28 <a href="http://www.tkk7.com/airdream/archive/2006/12/29/90689.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>閫氳繃SFTP鍗忚榪炴帴鏈嶅姟鍣紞錛岼2SSH Maverick 綆鍗曚嬌鐢?/title><link>http://www.tkk7.com/airdream/archive/2006/06/27/55274.html</link><dc:creator>AIRDREAM</dc:creator><author>AIRDREAM</author><pubDate>Tue, 27 Jun 2006 04:02:00 GMT</pubDate><guid>http://www.tkk7.com/airdream/archive/2006/06/27/55274.html</guid><wfw:comment>http://www.tkk7.com/airdream/comments/55274.html</wfw:comment><comments>http://www.tkk7.com/airdream/archive/2006/06/27/55274.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/airdream/comments/commentRss/55274.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/airdream/services/trackbacks/55274.html</trackback:ping><description><![CDATA[ <p> <font size="2">鐢變簬鍏徃闇瑕侊紝鍦ㄧ綉涓婃壘浜嗕竴涓嬫敮鎸丼FTP鐨勫寘錛屽彂鐜頒咯涓笉閿欑殑錛屼竴涓槸 <span id="k2si2cy" class="pageheader">Secure FTP Factory 錛屼竴涓槸 J2SSH Maverick 錛屼絾閮?span class="pageheader">鏄敹璐圭殑,鐜板湪綆鍗曚粙緇嶄竴涓?J2SSH Maverick 鎬庢牱綆鍗曚嬌鐢ㄣ備唬鐮佸涓嬶細<br />/* HEADER */<br />import com.maverick.ssh.*;<br />import com.maverick.ssh2.*;<br />import java.io.*;</span></span></font> </p> <p> <font size="2"> <span id="uggeg2e" class="pageheader"> <span id="a4iymu4" class="pageheader">import com.sshtools.net.*;<br />import com.sshtools.sftp.*;</span> </span> </font> </p> <p> <font size="2"> <span id="24w4i4q" class="pageheader"> <span id="kc444ky" class="pageheader">/**<br />聽* This example demonstrates the connection process connecting to an SSH2 server<br />聽* and usage of the SFTP client.<br />聽*/<br />public class MySftpConnect {<br />聽public static void main(String[] args) {<br />聽聽MySftpConnect c = new MySftpConnect();<br />聽聽c.createSftpClient("192.168.0.108", "szb", "szbpatternx86", 22);錛嶏紞鍙傛暟渚濇涓轟富鏈哄悕錛岀敤鎴峰悕錛屽瘑鐮侊紝绔彛鍙楓?br />聽}</span> </span> </font> </p> <p> <font size="2"> <span id="2smgaq4" class="pageheader"> <span id="6gskasu" class="pageheader">聽public void createSftpClient(String hostname, String username,<br />聽聽聽String password, int port) {<br />聽聽try {<br />聽聽聽System.out.println("Connecting to " + hostname);</span> </span> </font> </p> <p> <font size="2"> <span id="6myscsy" class="pageheader"> <span id="w2uya4k" class="pageheader">聽聽聽// Create an SshConnector instance<br />聽聽聽SshConnector con = SshConnector.getInstance();</span> </span> </font> </p> <p> <font size="2"> <span id="6mgs4wu" class="pageheader"> <span id="6i4w24k" class="pageheader">聽聽聽// Connect to the host<br />聽聽聽SocketTransport t = new SocketTransport(hostname, port);<br />聽聽聽t.setTcpNoDelay(true);<br />聽聽聽SshClient ssh = con.connect(t, username);<br />聽聽聽Ssh2Client ssh2 = (Ssh2Client) ssh;</span> </span> </font> </p> <p> <font size="2"> <span id="o4ys2gm" class="pageheader"> <span id="acq4ue2" class="pageheader">聽聽聽// Authenticate the user using password authentication<br />聽聽聽com.maverick.ssh.PasswordAuthentication pwd = new com.maverick.ssh.PasswordAuthentication();<br />聽聽聽do {<br />聽聽聽聽pwd.setPassword(password);<br />聽聽聽} while (ssh2.authenticate(pwd) != SshAuthentication.COMPLETE<br />聽聽聽聽聽&& ssh.isConnected());<br />聽聽聽// Start a session and do basic IO<br />聽聽聽if (ssh.isAuthenticated()) {<br />聽聽聽聽SftpClient sftp = new SftpClient(ssh2);<br />聽聽聽聽// test create file.<br />聽聽聽聽this.createTestFile(sftp);<br />聽聽聽}<br />聽聽} catch (Throwable th) {<br />聽聽聽th.printStackTrace();<br />聽聽}<br />聽}</span> <br /> </span> </font> </p> <p> <font size="2"> <span id="g4ysgq4" class="pageheader"> <span id="ismkq44" class="pageheader">//嫻嬭瘯IO鎿嶄綔<br />聽public void createTestFile(SftpClient sftp) throws Exception {</span> </span> </font> </p> <p> <font size="2"> <span id="y4ik4q4" class="pageheader"> <span id="kea2uue" class="pageheader">聽聽File textFile = new File(System.getProperty("user.home"), "shining.txt");<br />聽聽FileOutputStream tout = new FileOutputStream(textFile);</span> </span> </font> </p> <p> <font size="2"> <span id="uoi2ou4" class="pageheader"> <span id="qqiwmug" class="pageheader">聽聽// Create a file with \r\n as EOL<br />聽聽for (int i = 0; i < 100; i++) {<br />聽聽聽tout.write("All work and no play makes Jack a dull boy涓枃\r\n"<br />聽聽聽聽聽.getBytes());<br />聽聽}<br />聽聽tout.close();</span> </span> </font> </p> <p> <font size="2"> <span id="yeie2a4" class="pageheader"> <span id="ua2ec44" class="pageheader">聽聽// Perform some text mode operations鎸囧畾鏂囦歡瀛樺偍涓簍xt綾誨瀷<br />聽聽sftp.setTransferMode(SftpClient.MODE_TEXT);</span> </span> </font> </p> <p> <font size="2"> <span id="si24u4s" class="pageheader"> <span id="2m24kaq" class="pageheader">聽聽// Tell the client which EOL the remote client is using - note<br />聽聽// that this will be ignored with version 4 of the protocol<br />聽聽sftp.setRemoteEOL(SftpClient.EOL_LF);<br />聽聽//灝嗘枃浠朵笂浼犲埌鏈嶅姟鍣?br />聽聽sftp.put(textFile.getAbsolutePath());<br />聽}<br />}<br /><br />鍐欑殑涓嶅お璇︾粏錛岃鍙傝冿細<a >http://3sp.com/kb/idx/0/014/article/Getting_started_with_J2SSH_Maverick.html</a></span> </span> </font> </p> <img src ="http://www.tkk7.com/airdream/aggbug/55274.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/airdream/" target="_blank">AIRDREAM</a> 2006-06-27 12:02 <a href="http://www.tkk7.com/airdream/archive/2006/06/27/55274.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>甯哥敤鏁版嵁搴揓DBC榪炴帴鍐欐硶錛堣漿錛?/title><link>http://www.tkk7.com/airdream/archive/2006/06/24/54834.html</link><dc:creator>AIRDREAM</dc:creator><author>AIRDREAM</author><pubDate>Sat, 24 Jun 2006 02:06:00 GMT</pubDate><guid>http://www.tkk7.com/airdream/archive/2006/06/24/54834.html</guid><wfw:comment>http://www.tkk7.com/airdream/comments/54834.html</wfw:comment><comments>http://www.tkk7.com/airdream/archive/2006/06/24/54834.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/airdream/comments/commentRss/54834.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/airdream/services/trackbacks/54834.html</trackback:ping><description><![CDATA[涓轟簡鏂逛究澶у鏌ユ壘錛屾暣鐞嗗唴瀹瑰涓嬶細<br />1. MySQL(http://www.mysql.com)mm.mysql-2.0.2-bin.jar<br />Class.forName( "org.gjt.mm.mysql.Driver" );<br />cn = DriverManager.getConnection( "jdbc:mysql://MyDbComputerNameOrIP:3306/myDatabaseName", sUsr, sPwd ); <p>2. PostgreSQL(http://www.de.postgresql.org)pgjdbc2.jar<br />Class.forName( "org.postgresql.Driver" );<br />cn = DriverManager.getConnection( "jdbc:postgresql://MyDbComputerNameOrIP/myDatabaseName", sUsr, sPwd ); </p><p>3. Oracle(http://www.oracle.com/ip/deploy/database/oracle9i/)classes12.zip<br />Class.forName( "oracle.jdbc.driver.OracleDriver" );<br />cn = DriverManager.getConnection( "jdbc:oracle:thin:@MyDbComputerNameOrIP:1521:ORCL", sUsr, sPwd );<br />4. Sybase(http://jtds.sourceforge.net)jconn2.jar </p><p>Class.forName( "com.sybase.jdbc2.jdbc.SybDriver" );<br />cn = DriverManager.getConnection( "jdbc:sybase:Tds:MyDbComputerNameOrIP:2638", sUsr, sPwd );<br />//(Default-Username/Password: "dba"/"sql") </p><p>5. Microsoft SQLServer(http://jtds.sourceforge.net)<br />Class.forName( "net.sourceforge.jtds.jdbc.Driver" );<br />cn = DriverManager.getConnection( "jdbc:jtds:sqlserver://MyDbComputerNameOrIP:1433/master", sUsr, sPwd ); </p><p>6. Microsoft SQLServer(http://www.microsoft.com)<br />Class.forName( "com.microsoft.jdbc.sqlserver.SQLServerDriver" );<br />cn = DriverManager.getConnection( "jdbc:microsoft:sqlserver://MyDbComputerNameOrIP:1433;databaseName=master", sUsr, sPwd ); </p><p>7. ODBC<br />Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );<br />Connection cn = DriverManager.getConnection( "jdbc:odbc:" + sDsn, sUsr, sPwd ); </p><p>8.DB2(鏂版坊鍔?<br />Class.forName("com.ibm.db2.jdbc.net.DB2Driver");<br />String url="jdbc:db2://192.9.200.108:6789/SAMPLE"<br />cn = DriverManager.getConnection( url, sUsr, sPwd ); </p><p>9.Microsoft SQL Server series (6.5, 7.x and 2000) and Sybase 10 </p><p>JDBC Name: jTDS<br />URL: http://jtds.sourceforge.net/<br />Version: 0.5.1<br />Download URL: http://sourceforge.net/project/showfiles.php?group_id=33291 </p><p>璇硶:<br />Class.forName("net.sourceforge.jtds.jdbc.Driver ");<br />Connection con = DriverManager.getConnection("jdbc:jtds:sqlserver://host:port/database","user","password");<br />or<br />Connection con = DriverManager.getConnection("jdbc:jtds:sybase://host:port/database","user","password"); </p><p>10.Postgresql<br />JDBC Name: PostgreSQL JDBC<br />URL: http://jdbc.postgresql.org/<br />Version: 7.3.3 build 110<br />Download URL: http://jdbc.postgresql.org/download.html<br />璇硶:<br />Class.forName("org.postgresql.Driver"); <br />Connection con=DriverManager.getConnection("jdbc:postgresql://host:port/database","user","password"); </p><p>11.IBM AS400涓繪満鍦ㄧ敤鐨凧DBC璇硶<br />鏈夎V4R4浠ヤ笂鐗堟湰鐨凜lient Access Express<br />鍙互鍦–:\Program Files\IBM\Client Access\jt400\lib<br />鎵懼埌 driver 妗f jt400.zip錛屽茍鏇存敼鎵╁睍鍚嶆垚涓?jt400.jar<br />璇硶:<br />java.sql.DriverManager.registerDriver (new com.ibm.as400.access.AS400JDBCDriver ());<br />Class.forName("com.ibm.as400.access.AS400JDBCConnection");<br />con = DriverManager.getConnection("jdbc:as400://IP","user","password"); </p><p>12.informix<br />Class.forName("com.informix.jdbc.IfxDriver").newInstance(); <br />String url = <br />"jdbc:informix-sqli://123.45.67.89:1533/testDB:INFORMIXSERVER=myserver; <br />user=testuser;password=testpassword";<br />Lib錛歫dbcdrv.zip<br /><br />Class.forName( "com.sybase.jdbc.SybDriver" )<br />url="jdbc:sybase:Tds:127.0.0.1:2638/asademo";<br />SybConnection connection= (SybConnection)DriverManager.getConnection(url,"dba","sql"); </p><p>13.SAP DB<br />Class.forName ("com.sap.dbtech.jdbc.DriverSapDB");<br />java.sql.Connection connection = java.sql.DriverManager.getConnection ( "jdbc:sapdb://" + host + "/" + database_name,user_name, password) </p><p>14.InterBase<br />String url = "jdbc:interbase://localhost/e:/testbed/database/employee.gdb";<br />Class.forName("interbase.interclient.Driver");<br />//Driver d = new interbase.interclient.Driver (); /* this will also work if you do not want the line above */<br />Connection conn = DriverManager.getConnection( url, "sysdba", "masterkey" ); </p><p>15.HSqlDB<br />url: http://hsqldb.sourceforge.net/<br />driver: org.hsqldb.jdbcDriver<br />榪炴帴鏂瑰紡鏈?縐嶏紝鍒嗗埆涓猴細<br />con-str錛堝唴瀛橈級: jdbc:hsqldb.<br />con-str錛堟湰鍦幫級: jdbc:hsqldb:/path/to/the/db/dir<br />con-str錛坔ttp錛? jdbc:hsqldb:http://dbsrv<br />con-str錛坔sql錛? jdbc:hsqldb:hsql://dbsrv<br /></p><img src ="http://www.tkk7.com/airdream/aggbug/54834.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/airdream/" target="_blank">AIRDREAM</a> 2006-06-24 10:06 <a href="http://www.tkk7.com/airdream/archive/2006/06/24/54834.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>System.getProperties() 寰楀埌緋葷粺灞炴?/title><link>http://www.tkk7.com/airdream/archive/2006/06/21/54299.html</link><dc:creator>AIRDREAM</dc:creator><author>AIRDREAM</author><pubDate>Wed, 21 Jun 2006 08:36:00 GMT</pubDate><guid>http://www.tkk7.com/airdream/archive/2006/06/21/54299.html</guid><wfw:comment>http://www.tkk7.com/airdream/comments/54299.html</wfw:comment><comments>http://www.tkk7.com/airdream/archive/2006/06/21/54299.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/airdream/comments/commentRss/54299.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/airdream/services/trackbacks/54299.html</trackback:ping><description><![CDATA[System.getProperties() 鍙互寰楀埌寰堝緋葷粺鐨勫睘鎬э紝濡備笅錛?<br />{java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, <br />sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_09\bin, <br />java.vm.version=1.4.2_09-b05, <br />java.vm.vendor=Sun Microsystems Inc., <br />java.vendor.url=http://java.sun.com/, <br />path.separator=;, <br />java.vm.name=Java HotSpot(TM) Client VM, <br />file.encoding.pkg=sun.io,<br />聽user.country=CN, <br />sun.os.patch.level=Service Pack 2, <br />java.vm.specification.name=Java Virtual Machine Specification, <br />user.dir=D:\workspace\test, <br />java.runtime.version=1.4.2_09-b05, <br />java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, <br />java.endorsed.dirs=C:\Program Files\Java\j2re1.4.2_09\lib\endorsed, <br />os.arch=x86, <br />java.io.tmpdir=C:\DOCUME~1\szb\LOCALS~1\Temp\, <br />line.separator= , <br />java.vm.specification.vendor=Sun Microsystems Inc., <br />user.variant=, <br />os.name=Windows XP, <br />sun.java2d.fontpath=, <br />java.library.path=C:\Program Files\Java\j2re1.4.2_09\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\apache-ant-1.6.5\bin;D:\jdk1.5.0_05\bin, <br />java.specification.name=Java Platform API Specification, <br />java.class.version=48.0, <br />java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory, <br />os.version=5.1, <br />user.home=C:\Documents and Settings\szb, <br />user.timezone=, <br />java.awt.printerjob=sun.awt.windows.WPrinterJob, <br />file.encoding=GBK, <br />java.specification.version=1.4, <br />java.class.path=D:\workspace\test, <br />user.name=szb, <br />java.vm.specification.version=1.0, <br />java.home=C:\Program Files\Java\j2re1.4.2_09, <br />sun.arch.data.model=32, <br />user.language=zh, <br />java.specification.vendor=Sun Microsystems Inc., <br />awt.toolkit=sun.awt.windows.WToolkit, <br />java.vm.info=mixed mode, <br />java.version=1.4.2_09, <br />java.ext.dirs=C:\Program Files\Java\j2re1.4.2_09\lib\ext, <br />sun.boot.class.path=C:\Program Files\Java\j2re1.4.2_09\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_09\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_09\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_09\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_09\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_09\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_09\classes, <br />java.vendor=Sun Microsystems Inc., <br />file.separator=\, <br />java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, <br />sun.io.unicode.encoding=UnicodeLittle, <br />sun.cpu.endian=little, <br />sun.cpu.isalist=pentium i486 i386} <img src ="http://www.tkk7.com/airdream/aggbug/54299.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/airdream/" target="_blank">AIRDREAM</a> 2006-06-21 16:36 <a href="http://www.tkk7.com/airdream/archive/2006/06/21/54299.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.tkk7.com/" title="亚洲av成人片在线观看">亚洲av成人片在线观看</a> <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://www-135888.com" target="_blank">国产男女猛烈无遮挡免费视频</a>| <a href="http://ydxcsh.com" target="_blank">91精品手机国产免费</a>| <a href="http://diswooo.com" target="_blank">成人免费无码视频在线网站</a>| <a href="http://121fj.com" target="_blank">亚洲手机中文字幕</a>| <a href="http://35xyz.com" target="_blank">18禁成人网站免费观看</a>| <a href="http://5666my.com" target="_blank">亚洲国产成人久久综合一区</a>| <a href="http://www79909c.com" target="_blank">最近免费中文在线视频</a>| <a href="http://vastraje.com" target="_blank">亚洲国产精品一区二区久</a>| <a href="http://ygf123.com" target="_blank">91在线视频免费91</a>| <a href="http://eaivan.com" target="_blank">亚洲色大成网站WWW国产</a>| <a href="http://9988u.com" target="_blank">日韩在线免费电影</a>| <a href="http://888xxss.com" target="_blank">深夜福利在线视频免费</a>| <a href="http://szyujiaxing.com" target="_blank">亚洲精品无码久久久</a>| <a href="http://5079157.com" target="_blank">四虎影视无码永久免费</a>| <a href="http://longcais.com" target="_blank">久久精品国产亚洲AV麻豆网站 </a>| <a href="http://91ggan.com" target="_blank">最近中文字幕国语免费完整 </a>| <a href="http://740740740.com" target="_blank">精品亚洲成A人无码成A在线观看</a>| <a href="http://54vpn.com" target="_blank">99久久99这里只有免费费精品</a>| <a href="http://yuyang0752.com" target="_blank">亚洲一区二区三区在线网站</a>| <a href="http://baiyifuwu.com" target="_blank">蜜桃视频在线观看免费网址入口</a>| <a href="http://78555yy.com" target="_blank">亚洲欧美日韩综合俺去了</a>| <a href="http://yongfu-sh.com" target="_blank">亚洲AⅤ视频一区二区三区</a>| <a href="http://tzkanglong.com" target="_blank">久久久受www免费人成</a>| <a href="http://dstbxg.com" target="_blank">亚洲蜜芽在线精品一区</a>| <a href="http://jiujiujingpin.com" target="_blank">成人免费毛片内射美女-百度</a>| <a href="http://xyxpx.com" target="_blank">久久亚洲中文无码咪咪爱</a>| <a href="http://tmg-beelen.com" target="_blank">久久久无码精品亚洲日韩软件</a>| <a href="http://hljjlhl.com" target="_blank">污污网站免费观看</a>| <a href="http://blzcn.com" target="_blank">亚洲国产精品无码观看久久</a>| <a href="http://gdsanhai.com" target="_blank">亚洲日本在线观看视频</a>| <a href="http://626393.com" target="_blank">98精品全国免费观看视频</a>| <a href="http://477077.com" target="_blank">最新国产精品亚洲</a>| <a href="http://sdzntg.com" target="_blank">久久伊人亚洲AV无码网站</a>| <a href="http://bjbanjia01.com" target="_blank">最近中文字幕免费完整</a>| <a href="http://www62hth.com" target="_blank">亚洲av永久无码天堂网</a>| <a href="http://www-554949.com" target="_blank">亚洲色婷婷六月亚洲婷婷6月</a>| <a href="http://weisuoshu.com" target="_blank">五月婷婷在线免费观看</a>| <a href="http://ccc16938.com" target="_blank">免费无码午夜福利片69</a>| <a href="http://www330330.com" target="_blank">久久久久亚洲Av无码专</a>| <a href="http://c7vl.com" target="_blank">亚洲av无码成人精品区在线播放</a>| <a href="http://020iws.com" target="_blank">最近免费中文字幕MV在线视频3</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>