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 閱讀(566) 評論(0)  編輯  收藏 所屬分類: Simple Java
          <2007年4月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345




          常用鏈接

          留言簿(10)

          隨筆分類(95)

          隨筆檔案(97)

          文章檔案(10)

          相冊

          J2ME技術網站

          java技術相關

          mess

          搜索

          •  

          最新評論

          閱讀排行榜

          校園夢網網絡電話,中國最優秀的網絡電話
          主站蜘蛛池模板: 嘉祥县| 靖远县| 宝鸡市| 自贡市| 平舆县| 监利县| 浮山县| 惠安县| 南昌县| 临汾市| 灵寿县| 兴业县| 江门市| 湖州市| 广宗县| 日照市| 延吉市| 兴仁县| 甘孜| 竹溪县| 苗栗县| 江山市| 舞阳县| 措勤县| 久治县| 东光县| 浦东新区| 桓台县| 舞阳县| 威海市| 邛崃市| 铜梁县| 广州市| 务川| 台北市| 那曲县| 潍坊市| 马边| 长寿区| 高安市| 沿河|