锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲成人激情小说,亚洲精品无播放器在线播放 ,亚洲国产区男人本色在线观看http://m.tkk7.com/nelson_tu/category/821.htmlKeep it simple, Stupid, Less is morezh-cnWed, 28 Feb 2007 03:35:01 GMTWed, 28 Feb 2007 03:35:01 GMT60Tiger緋誨垪浜旓細璁塊棶鐜鍙橀噺鍜岃皟鐢ㄥ瓙榪涚▼http://m.tkk7.com/nelson_tu/archive/2005/03/21/2294.htmlnelson_tunelson_tuMon, 21 Mar 2005 14:04:00 GMThttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2294.htmlhttp://m.tkk7.com/nelson_tu/comments/2294.htmlhttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2294.html#Feedback0http://m.tkk7.com/nelson_tu/comments/commentRss/2294.htmlhttp://m.tkk7.com/nelson_tu/services/trackbacks/2294.htmlSystem.getenv()鏂規(guī)硶鍙互鏂逛究鐨勮闂鉤鍙扮殑鐜鍙橀噺錛屼絾浠庝竴寮濮嬪氨閬埌鍙嶅鑰岃鎶涘純錛屽洜涓鴻鏂規(guī)硶榪濊儗浜嗏滅紪鍐欎竴嬈★紝闅忓榪愯鈥濈殑鍘熷垯銆傚湪Tiger鐗堟湰涓紝鍙堝彲浠ヤ嬌鐢ㄨ鏂規(guī)硶浜嗐?/SPAN>

璁塊棶騫沖彴涓撴湁淇℃伅騫朵笉鏄竴浠跺鏄撶殑浜嬨傝櫧鐒跺彲浠ヤ嬌鐢?/SPAN> Runtime.exec() 鍒涘緩榪涚▼錛屼絾鐢變簬騫沖彴涔嬮棿鐨勫樊寮傦紝鏋勯犲弬鏁伴泦甯稿父浠や漢澶寸棝涓嶅凡銆?/SPAN>Tiger鎻愪緵浜嗘柊鐨?/SPAN>ProcessBuilder綾伙紝浣垮緱璁塊棶騫沖彴涓撴湁淇℃伅鏇村姞瀹規(guī)槗銆?/SPAN>

 

1銆?/SPAN>璁塊棶鐜鍙橀噺

System.getenv()鏈変袱縐嶆柟娉曪細

錛?/SPAN>1錛夋寚瀹氱幆澧冨彉閲忓悕鏉ヨ幏寰楃幆澧冨彉閲忓鹼紝濡備笅闈㈢殑渚嬪瓙錛?/SPAN>

public class EnvTest {
       public static void main(String[] args) {
           System.out.println(System.getenv("JAVA_HOME"));
       }
}

杈撳嚭鐨勭粨鏋滃彲鑳芥槸錛?/SPAN>

E:\develop\j2sdk1.4.2_05

錛?/SPAN>2錛?/SPAN>榪斿洖鎵鏈夌幆澧冨彉閲忕殑Map瀵硅薄錛屼笅闈㈢殑渚嬪瓙杈撳嚭鎵鏈夌幆澧冨彉閲忓悕鍜屽鹼細

public class EnvDump {
       public static void main(String[] args) {
              for (Entry entry : System.getenv().entrySet()) {
                System.out.println(entry.getKey() + "=" + entry.getValue());
              }
       }
}

 

2銆?/SPAN>ProcessBuilder

l         鏃╂湡Java鐗堟湰鍏佽浣跨敤 Runtime.exec() 鏂規(guī)硶鍒涘緩鏈満榪涚▼錛岃鏂規(guī)硶浠嶇劧鏈夋晥錛屼絾鏄洜涓轟嬌鐢?/SPAN>String 鏁扮粍浣滀負鍙傛暟銆佷互 File 鍙傛暟浣滀負宸ヤ綔鐩綍錛屾墍浠ュ畾鍒跺瓙榪涚▼姣旇緝鍥伴毦

l         浣跨敤鏂扮殑ProcessBuilder綾?/SPAN>鍙互綆鍖栬繖涓繃紼?/SPAN>

l         涓嬮潰鏄竴涓惎鍔?/SPAN>EditPlus鐨勭畝鍗曠殑渚嬪瓙錛?/SPAN>

public class ProcessTest {
       public static void main(String[] args) throws IOException {
          Process p = new ProcessBuilder(鈥淐:\\Program Files\\EditPlus 2\\editplus.exe鈥?.start();
       }
}

l         涓嬮潰鏄湪鎵ц鍛戒護鏃舵寚瀹氬弬鏁扮殑渚嬪瓙錛?/SPAN>

public class ProcessTest {
       public static void main(String[] args) throws IOException {
                  Process p = new ProcessBuilder("ping", "sina.com.cn").start();
                  InputStream is = p.getInputStream();
              BufferedReader br = new BufferedReader(new InputStreamReader(is));
              String line;
              while ((line = br.readLine()) != null) {
                System.out.println(line);
              }
       }
}

l         ProcessBuilder鎻愪緵浜?directory() 鏂規(guī)硶鏀瑰彉榪涚▼鐨勫伐浣滅洰褰曪紝浣跨敤 environment() 鏂規(guī)硶鍦ㄨ繘紼嬬┖闂翠腑娣誨姞鍜屽垹闄ょ幆澧冨彉閲?/SPAN>錛屼笅闈㈡槸鏉ヨ嚜JDK5鐨勪緥瀛愶細

ProcessBuilder pb = new ProcessBuilder("myCommand", "myArg1", "myArg2");
Map<String, String> env = pb.environment();
env.put("VAR1", "myValue");
env.remove("OTHERVAR");
env.put("VAR2", env.get("VAR1") + "suffix");
pb.directory("myDir");
Process p = pb.start();


nelson_tu 2005-03-21 22:04 鍙戣〃璇勮
]]>
Tiger緋誨垪鍥涳細Annotation絎簩閮ㄥ垎錛氬畾鍒禔nnotationhttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2293.htmlnelson_tunelson_tuMon, 21 Mar 2005 14:02:00 GMThttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2293.htmlhttp://m.tkk7.com/nelson_tu/comments/2293.htmlhttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2293.html#Feedback0http://m.tkk7.com/nelson_tu/comments/commentRss/2293.htmlhttp://m.tkk7.com/nelson_tu/services/trackbacks/2293.html闃呰鍏ㄦ枃

nelson_tu 2005-03-21 22:02 鍙戣〃璇勮
]]>
Tiger緋誨垪涓夛細Annotation絎竴閮ㄥ垎錛氫嬌鐢ㄥ唴緗殑Annotationhttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2292.htmlnelson_tunelson_tuMon, 21 Mar 2005 14:01:00 GMThttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2292.htmlhttp://m.tkk7.com/nelson_tu/comments/2292.htmlhttp://m.tkk7.com/nelson_tu/archive/2005/03/21/2292.html#Feedback1http://m.tkk7.com/nelson_tu/comments/commentRss/2292.htmlhttp://m.tkk7.com/nelson_tu/services/trackbacks/2292.html闃呰鍏ㄦ枃

nelson_tu 2005-03-21 22:01 鍙戣〃璇勮
]]>
Tiger緋誨垪浜岋細Tiger璇█鏂扮壒鎬?/title><link>http://m.tkk7.com/nelson_tu/archive/2005/03/21/2290.html</link><dc:creator>nelson_tu</dc:creator><author>nelson_tu</author><pubDate>Mon, 21 Mar 2005 13:58:00 GMT</pubDate><guid>http://m.tkk7.com/nelson_tu/archive/2005/03/21/2290.html</guid><wfw:comment>http://m.tkk7.com/nelson_tu/comments/2290.html</wfw:comment><comments>http://m.tkk7.com/nelson_tu/archive/2005/03/21/2290.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.tkk7.com/nelson_tu/comments/commentRss/2290.html</wfw:commentRss><trackback:ping>http://m.tkk7.com/nelson_tu/services/trackbacks/2290.html</trackback:ping><description><![CDATA[     鎽樿: 1銆侀噸瑕佺殑璇█鍙樺寲 l         娉涘瀷錛圙enerics錛?l         澧炲己鍨嬪驚鐜紙foreach錛?l         鑷姩灝佺錛圓uto...  <a href='http://m.tkk7.com/nelson_tu/archive/2005/03/21/2290.html'>闃呰鍏ㄦ枃</a><img src ="http://m.tkk7.com/nelson_tu/aggbug/2290.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.tkk7.com/nelson_tu/" target="_blank">nelson_tu</a> 2005-03-21 21:58 <a href="http://m.tkk7.com/nelson_tu/archive/2005/03/21/2290.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>Tiger緋誨垪涓錛氫粠XML涓姞杞藉睘鎬?/title><link>http://m.tkk7.com/nelson_tu/archive/2005/03/21/2280.html</link><dc:creator>nelson_tu</dc:creator><author>nelson_tu</author><pubDate>Mon, 21 Mar 2005 05:31:00 GMT</pubDate><guid>http://m.tkk7.com/nelson_tu/archive/2005/03/21/2280.html</guid><wfw:comment>http://m.tkk7.com/nelson_tu/comments/2280.html</wfw:comment><comments>http://m.tkk7.com/nelson_tu/archive/2005/03/21/2280.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://m.tkk7.com/nelson_tu/comments/commentRss/2280.html</wfw:commentRss><trackback:ping>http://m.tkk7.com/nelson_tu/services/trackbacks/2280.html</trackback:ping><description><![CDATA[     鎽樿: JDK1.5錛堜唬鍙稵iger錛変腑鏇存柊浜唈ava.util.Properties綾伙紝鎻愪緵浜嗕粠XML鏂囦歡涓鍐檏ey-value瀵瑰睘鎬х殑綆鍗曟柟娉曪細loadFromXML()鍜宻toreToXML() 1銆佸熀鏈姞杞藉睘鎬х殑鏂規(guī)硶 l         Sample灞炴ф枃浠訛細sample.properties foo=barf...  <a href='http://m.tkk7.com/nelson_tu/archive/2005/03/21/2280.html'>闃呰鍏ㄦ枃</a><img src ="http://m.tkk7.com/nelson_tu/aggbug/2280.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://m.tkk7.com/nelson_tu/" target="_blank">nelson_tu</a> 2005-03-21 13:31 <a href="http://m.tkk7.com/nelson_tu/archive/2005/03/21/2280.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://m.tkk7.com/" title="亚洲av成人片在线观看">亚洲av成人片在线观看</a> <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://166sb.com" target="_blank">亚洲国产视频久久</a>| <a href="http://lfhotline.com" target="_blank">亚洲午夜成激人情在线影院 </a>| <a href="http://df8848.com" target="_blank">无码少妇精品一区二区免费动态</a>| <a href="http://chandou8.com" target="_blank">亚洲国产成人久久综合一区77</a>| <a href="http://57798b.com" target="_blank">精品亚洲av无码一区二区柚蜜</a>| <a href="http://ddhlj.com" target="_blank">国产精品va无码免费麻豆</a>| <a href="http://ccc998.com" target="_blank">亚洲a无码综合a国产av中文</a>| <a href="http://hqwgg.com" target="_blank">国产男女猛烈无遮挡免费视频</a>| <a href="http://cztshw.com" target="_blank">国产亚洲精品美女</a>| <a href="http://twtairun.com" target="_blank">亚洲性日韩精品国产一区二区</a>| <a href="http://222mp3.com" target="_blank">国产午夜精品理论片免费观看</a>| <a href="http://www-63228.com" target="_blank">精品亚洲一区二区</a>| <a href="http://930mk.com" target="_blank">97在线视频免费播放</a>| <a href="http://www789789.com" target="_blank">中文字幕在线观看亚洲日韩</a>| <a href="http://240842.com" target="_blank">热久久精品免费视频</a>| <a href="http://sxhnyl.com" target="_blank">一级特级aaaa毛片免费观看</a>| <a href="http://www-566846.com" target="_blank">亚洲日韩精品无码一区二区三区 </a>| <a href="http://3baimm.com" target="_blank">国产成人高清精品免费鸭子</a>| <a href="http://4husese.com" target="_blank">美女18毛片免费视频</a>| <a href="http://sdzntg.com" target="_blank">亚洲精品无码av人在线观看</a>| <a href="http://6006284.com" target="_blank">国产成人一区二区三区视频免费</a>| <a href="http://class3g.com" target="_blank">亚洲视频一区在线播放</a>| <a href="http://huahui1866.com" target="_blank">永久免费毛片在线播放</a>| <a href="http://lyczyb.com" target="_blank">黄页网站在线免费观看</a>| <a href="http://xxyy66.com" target="_blank">国产亚洲av片在线观看播放</a>| <a href="http://blcvs.com" target="_blank">亚洲黄色片免费看</a>| <a href="http://zhuanjiao521.com" target="_blank">亚洲爆乳无码专区www</a>| <a href="http://4466n.com" target="_blank">伊伊人成亚洲综合人网7777</a>| <a href="http://cdessc.com" target="_blank">伊人久久免费视频</a>| <a href="http://www-kj5799.com" target="_blank">亚洲日韩AV无码一区二区三区人</a>| <a href="http://cswangli.com" target="_blank">亚洲第一福利网站在线观看</a>| <a href="http://aplus178.com" target="_blank">久久免费视频网站</a>| <a href="http://www-60060.com" target="_blank">国产亚洲玖玖玖在线观看</a>| <a href="http://jisuanq.com" target="_blank">亚洲国产综合精品中文字幕</a>| <a href="http://82nnn.com" target="_blank">日韩免费人妻AV无码专区蜜桃 </a>| <a href="http://koukoub.com" target="_blank">国产亚洲蜜芽精品久久</a>| <a href="http://tv886.com" target="_blank">亚洲不卡中文字幕无码</a>| <a href="http://hsewx.com" target="_blank">女人毛片a级大学毛片免费</a>| <a href="http://bbscqz.com" target="_blank">久久成人永久免费播放</a>| <a href="http://ulihix.com" target="_blank">亚洲综合伊人制服丝袜美腿</a>| <a href="http://bisilover.com" 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>