posts - 97,  comments - 93,  trackbacks - 0
          出于java的安全限制,System.getProperty("line.seperator")是不能夠直接取得的。可以這樣做:
          String lineSeparator = (String) java.security.AccessController.doPrivileged(
                         
          new sun.security.action.GetPropertyAction("line.separator"));
          具體參考java.io.BufferedWriter的源代碼就可以找到上面這行代碼。 DriverManager里也有
           1     private static void loadInitialDrivers() {
           2         String drivers;
           3 
           4         try {
           5             drivers = (String) java.security.AccessController
           6                     .doPrivileged(new sun.security.action.GetPropertyAction(
           7                             "jdbc.drivers"));
           8         } catch (Exception ex) {
           9             drivers = null;
          10         }
          11         println("DriverManager.initialize: jdbc.drivers = " + drivers);
          12         if (drivers == null) {
          13             return;
          14         }
          15         while (drivers.length() != 0) {
          16             int x = drivers.indexOf(':');
          17             String driver;
          18             if (x < 0) {
          19                 driver = drivers;
          20                 drivers = "";
          21             } else {
          22                 driver = drivers.substring(0, x);
          23                 drivers = drivers.substring(x + 1);
          24             }
          25             if (driver.length() == 0) {
          26                 continue;
          27             }
          28             try {
          29                 println("DriverManager.Initialize: loading " + driver);
          30                 Class.forName(driver, true, ClassLoader.getSystemClassLoader());
          31             } catch (Exception ex) {
          32                 println("DriverManager.Initialize: load failed: " + ex);
          33             }
          34         }
          35     }
          sun.security.action.GetPropertyAction() hasn't been publiced.actually and exactly,it's not be doced,which reflects that sun doesn't surport us to use these class or method which is lower class,usually, we use the classes api tells us is proier and maybe has called these undoc class  but usually for us ,it's not necessary.so in the program of us or even others ,we could and i think it's really better for us to neglect  them which u can find out in the jar file of rt.jar.

          posted on 2007-04-11 16:35 wqwqwqwqwq 閱讀(567) 評論(0)  編輯  收藏 所屬分類: Simple Java
          <2007年4月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345




          常用鏈接

          留言簿(10)

          隨筆分類(95)

          隨筆檔案(97)

          文章檔案(10)

          相冊

          J2ME技術網站

          java技術相關

          mess

          搜索

          •  

          最新評論

          閱讀排行榜

          校園夢網網絡電話,中國最優秀的網絡電話
          主站蜘蛛池模板: 二手房| 佛坪县| 上栗县| 乌苏市| 家居| 益阳市| 斗六市| 平和县| 贵定县| 天镇县| 东明县| 临西县| 潜山县| 鹿邑县| 福贡县| 通渭县| 丹寨县| 宽甸| 梧州市| 岳阳市| 钦州市| 祁阳县| 舒城县| 海门市| 洪泽县| 专栏| 花垣县| 通榆县| 噶尔县| 武宁县| 沈阳市| 夹江县| 牡丹江市| 教育| 防城港市| 布尔津县| 缙云县| 利川市| 桑日县| 伊金霍洛旗| 金寨县|