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

          搜索

          •  

          最新評論

          閱讀排行榜

          校園夢網網絡電話,中國最優秀的網絡電話
          主站蜘蛛池模板: 无极县| 嘉义县| 霍林郭勒市| 深圳市| 遂溪县| 庐江县| 桃园县| 监利县| 都匀市| 长治县| 永仁县| 岳普湖县| 东辽县| 漳州市| 白山市| 平阳县| 汤阴县| 正阳县| 莆田市| 长宁区| 彩票| 红原县| 宜丰县| 潜山县| 舟曲县| 临邑县| 泾源县| 卫辉市| 鄯善县| 莱芜市| 浑源县| 南漳县| 和田县| 萝北县| 永善县| 普兰店市| 上犹县| 张家界市| 革吉县| 邮箱| 陵川县|