West Farm
          吾本布衣,生于川北,躬耕于代碼的田地上。
          posts - 16,  comments - 15,  trackbacks - 0
          天天冒出一堆新的東西!讓人不知所措。

          舉個例子:jquery - angular - react - vue

          這語言真的有毒。

          如今的硬件,恐怕在瀏覽器中實現(xiàn)強類型語言JAVA來作為腳本語言都不比JS弱吧,哎真替applet感到冤枉。

          老夫一直就覺得,瀏覽器一直是一個很奇葩的東西,HTML+CSS+JS本身,難道不能發(fā)明一種語言通過HTTP傳輸,然后直接調(diào)用OS級別的UI來渲染不就完了嗎?

          網(wǎng)頁能實現(xiàn)的界面,我不信用操作系統(tǒng)的UI組件做不出來。
          posted @ 2018-04-01 00:19 West Farmer 閱讀(171) | 評論 (0)編輯 收藏
          原文地址:https://weblogs.java.net/blog/pat/archive/2004/10/stupid_scanner_1.html

          正則表達式中,\A是指一個字符串的開頭,可能大家用慣了^,而忽略了這個\A, 但是^其實是指一行的開始,而不管一個字符串里面包含多少行,\A都只匹配第一行的開頭。
          那么我們可以用
          \A做點什么呢?,看下面這個例子:
          static String convertStreamToString(java.io.InputStream is) {
              java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A");
              return s.hasNext() ? s.next() : "";
          }
          相信大家都看懂了,用\A作為分隔符,那么得到的當(dāng)然就只有一個token,那就是整個字符串了。再配合Scanner,就輕易的將一個輸入流轉(zhuǎn)換為一個字符串了。
          注意當(dāng)需要做編碼轉(zhuǎn)換時,Scanner是有支持編碼參數(shù)的構(gòu)造方法的。
          posted @ 2013-11-28 09:38 West Farmer 閱讀(1016) | 評論 (0)編輯 收藏
               摘要: Gson is library created by google guys, it is used for java bean to json serialization/deserialization. Gson can serialize any java bean, collection, map to json, and don't need to care about the...  閱讀全文
          posted @ 2013-11-22 19:22 West Farmer 閱讀(5328) | 評論 (3)編輯 收藏
          If we observe a property of SWT controls, and bind it to another observable value, you must take care of those method calls which will change the property indirectly.
          for example, we have a Combo whose "text" property is bound to a bean's "name" property like this:
          IObservableValue nameObservable = BeansObservables.observeDetailValue(obserabedDriverProfile, "name", String.class);

          ISWTObservableValue nameComboObservable = SWTObservables.observeText(driverClassCombo);

          bindingContext.bindValue(nameComboObservable , nameObservable, new UpdateValueStrategy(UpdateValueStrategy.POLICY_UPDATE), null);

          The variable "obserabedDriverProfile" is a observed selection in a ListViewer, it's in a master-detail scenario. If we add some code like this:
          obserabedDriverProfile.addValueChangeListener(new IValueChangeListener(){

                      @Override
                      public void handleValueChange(ValueChangeEvent event) {
                          DriverProfile dp = (DriverProfile)event.diff.getNewValue();
                          driverClassCombo.removeAll();
                          driverClassCombo.add(dp.getName();
                          driverClassCombo.setText(driverClassCombo.getItem(0));
                      }
                      
                  });
          every time you change the selection in the ListViewer,  the selected bean's "name" property will be set to a empty string. Why?  The removeAll method of Combo will clear it's text, and combo's "text" property is bound to selected bean's "name" property. So, the right way is:
          obserabedDriverProfile.addValueChangeListener(new IValueChangeListener(){

                      @Override
                      public void handleValueChange(ValueChangeEvent event) {
                          DriverProfile dp = (DriverProfile)event.diff.getNewValue();
                          String name = dp.getName;
                          driverClassCombo.removeAll();
                          driverClassCombo.add(name);
                          driverClassCombo.setText(driverClassCombo.getItem(0));
                      }
                      
                  });
          posted @ 2013-04-14 15:24 West Farmer 閱讀(253) | 評論 (0)編輯 收藏

          <2013年4月>
          31123456
          78910111213
          14151617181920
          21222324252627
          2829301234
          567891011

          常用鏈接

          留言簿

          隨筆分類

          隨筆檔案

          相冊

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 漠河县| 土默特右旗| 融水| 皮山县| 宁都县| 汕头市| 青神县| 施秉县| 湖南省| 阿拉善左旗| 前郭尔| 石首市| 英超| 丽江市| 辽宁省| 马鞍山市| 教育| 邹城市| 永胜县| 东丽区| 凤冈县| 成安县| 通榆县| 邹城市| 会同县| 中江县| 江达县| 鹤庆县| 前郭尔| 陕西省| 盈江县| 济源市| 招远市| 佛学| 南投市| 博爱县| 鹤岗市| 镶黄旗| 错那县| 平和县| 洱源县|