<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

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

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

    這語言真的有毒。

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

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

    網頁能實現的界面,我不信用操作系統的UI組件做不出來。
    posted @ 2018-04-01 00:19 West Farmer 閱讀(170) | 評論 (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作為分隔符,那么得到的當然就只有一個token,那就是整個字符串了。再配合Scanner,就輕易的將一個輸入流轉換為一個字符串了。
    注意當需要做編碼轉換時,Scanner是有支持編碼參數的構造方法的。
    posted @ 2013-11-28 09:38 West Farmer 閱讀(1015) | 評論 (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 閱讀(5323) | 評論 (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 閱讀(251) | 評論 (0)編輯 收藏
    本文用英文寫的,主要是考慮到本文分享的內容即使在google上也搜索不到(至少我是沒有搜索到)。

    My English is at a very low level, don't care about this fact, just focus on the idea shared here.

    The idea comes from the source code of ConfigurationElement which is located in package org.eclipse.core.internal.registry, If you read through the source code, you can also get it. But I found there is no documentation about this topic, so I wrote this.

    Sometimes we need to contribute java class to a extension point. And we can use ConfigurationElement#
    createExecutableExtension(String attributeName) to create an instance of it, if such a class is just a normal class, eclipse will  call class#newInstance(). But there is obvious restriction for using this approach, can't pass parameter in to create instance for example.

    There are three different way how eclipse create instance of your class.

    1. normal, call class#newInstance()
    2. if your calss implements IExecutableExtension interface, IExecutableExtension#setInitializationData(IConfigurationElement config, String propertyName, Object data) will be called on the instance returned by class#newInstance()
    3. if your calss implements IExecutableExtensionFactory interface, IExecutableExtensionFactory#create() will be called

    When you use the second method or the third method, you can pass in parameters, check the source code of ConfigurationElement, you will know how to do that. :D forgive me, I'm lazy. 
    posted @ 2012-04-15 16:33 West Farmer 閱讀(329) | 評論 (0)編輯 收藏
    SWT的Table不夠強大,而且似乎有嚴重的性能問題。(貌似是調用OS的實現,但是在win7上面跑卻非常慢,奇特!本地的性能不如虛擬機上跑的Swing)

    好在SWT中可以嵌入AWT。

    反正本人以前沒有過多Swing的經驗,但是在試玩了JTable之后發現確實很強大。

    對于有興趣的讀者可以試一下,本文將分享如何使得JTable與JFace Data Binding Framework(下文中簡稱JDBF)一起協同工作。

    通常像Table和List這種UI組件,展現的都是一個對象集合。JDBF 則為我們處理對象集合和UI界面的同步的問題。以List為例子,在Java中有java.util.List,而JFDB則提供了相應的
    ObservableList類,這個類Wrap一個java.util.List,當你對其進行增刪改時,與其綁定的UI組件會自動得到同步。但是ObservableList 的實現有個很大的問題就是對其的訪問只限于其所屬的Realm,這個Realm說白了就是SWT的UI線程,而當我們在SWT中嵌入AWT時,其中的AWT界面是跑在其自身的線程里面的。所以想要讓JTable與JFace Data Binding Framework(下文中簡稱JDBF)一起協同工作還要解決多線程的問題。廢話不多說了,直接上菜:

     public class DOTableModel extends AbstractTableModel  {
        /**
         * the ObservableList instance  to be shared with
         
    */
        private ObservableList list;
        
        private volatile  Integer  rowCount = null;
        
        private volatile DOModel object;;
        
        private  final Object lock = new Object();

        private static final long serialVersionUID = -8377145381412656796L;
        
        public DOTableModel(ObservableList list){
            this.list = list;
            this.list.addListChangeListener(new IListChangeListener(){
                @Override
                public void handleListChange(ListChangeEvent event) {
                    for(ListDiffEntry de : event.diff.getDifferences()){
                        if(de.isAddition()){
                            DOTableModel.this.fireTableRowsInserted(de.getPosition(), de.getPosition());
                        }else{
                            DOTableModel.this.fireTableRowsDeleted(de.getPosition(), de.getPosition());
                        }
                    }
                }
            });
        }

        @Override
        public int getRowCount() {
            list.getRealm().exec(new Runnable(){
                @Override
                public  void run() {
                    rowCount = list.size();
                    synchronized (lock) {
                        lock.notify();
                     }
                }
            });
            synchronized (lock) {
                while(rowCount == null){
                    try {
                        lock.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
             }
            return rowCount;
        }

        @Override
        public int getColumnCount() {
            return 11;
        }
        
        private void getObjectFromSWTRealm(final int rowIndex){
            object =  null;
            list.getRealm().exec(new Runnable(){
                @Override
                public synchronized void run() {
                    object = (DOModel) list.get(rowIndex);
                    synchronized (lock) {
                        lock.notify();
                     }
                }
            });
            synchronized (lock) {
                while(object == null){
                    try {
                        lock.wait();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
             }
        }

        @Override
        public Object getValueAt(final int rowIndex, int columnIndex) {
            getObjectFromSWTRealm(rowIndex);
            ...
        }

        @Override
        public void setValueAt(Object oValue, final int rowIndex, int columnIndex) {
            getObjectFromSWTRealm(rowIndex); 
            ...
        }

        @Override
        public String getColumnName(int column) {
           ...
        }

        @Override
        public boolean isCellEditable(int rowIndex, int columnIndex) {
            return true;
        }
        
        

    }





    posted @ 2012-04-05 23:46 West Farmer 閱讀(700) | 評論 (2)編輯 收藏
    class Java {

        Java Java;

        Java() {
            Java = Java(this);
        }

        Java(Java Java) {
            this.Java = Java;
        }

        Java Java() {
            return Java.this.Java;
        }

        Java Java(Java Java) {
            return new Java(Java);
        }

        public static void main(String[] args) {
            new Java().Java.Java().Java.Java();
        }

    }

    原文地址
    posted @ 2012-04-05 23:25 West Farmer 閱讀(585) | 評論 (0)編輯 收藏
    public static void main(String[] args) throws IOException {
            File sourceFile 
    = new File("c:\\java\\A.java");
            JavaCompiler compiler 
    = ToolProvider.getSystemJavaCompiler();
            System.out.println(System.getProperties().getProperty(
    "java.class.path"+ ";F:\\IndigoSpace\\ejp");
            compiler.run(
    nullnullnull"-cp", System.getProperties().getProperty("java.class.path"+ ";F:\\IndigoSpace\\ejp", sourceFile.getPath());
            System.out.println(
    new File("c:\\java\\").toURI().toURL());
            URLClassLoader loader 
    = new URLClassLoader(new URL[]{new File("c:\\java\\").toURI().toURL()});
            
    try {
                loader.loadClass(
    "A");
            } 
    catch (ClassNotFoundException e) {
                e.printStackTrace();
            }
        }
    需要注意的是,上面的代碼只有在JDK上才能運行,因為JDK里面才有javac。而且在實際應用中,你還要自己將package聲明轉換成文件目錄,否者裝載類的時候就會找不到。
    posted @ 2011-10-21 17:05 West Farmer 閱讀(332) | 評論 (0)編輯 收藏

    <2011年10月>
    2526272829301
    2345678
    9101112131415
    16171819202122
    23242526272829
    303112345

    常用鏈接

    留言簿

    隨筆分類

    隨筆檔案

    相冊

    搜索

    •  

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 亚洲乱亚洲乱少妇无码| 日韩中文无码有码免费视频 | 中国xxxxx高清免费看视频| 亚洲色欲一区二区三区在线观看| 黄色毛片视频免费| 亚洲乱码日产精品a级毛片久久| 国产精品亚洲一区二区三区在线观看 | 国产成人亚洲综合网站不卡| 国产一卡2卡3卡4卡2021免费观看| 亚洲黄色免费网站| xxxxwww免费| 亚洲另类自拍丝袜第1页| 在线日本高清免费不卡| 亚洲精品综合久久中文字幕 | 四虎永久在线精品免费一区二区| 亚洲av午夜成人片精品电影| 日韩一区二区三区免费播放| 久久亚洲2019中文字幕| 免费黄网站在线看| 亚洲第一区视频在线观看| 欧洲乱码伦视频免费| 亚洲av无码兔费综合| 国产亚洲欧洲Aⅴ综合一区| 99免费观看视频| 亚洲av无码专区在线观看下载| www.亚洲精品.com| 日本免费中文视频| 亚洲一区二区三区在线| 国产福利免费观看| a成人毛片免费观看| 亚洲校园春色小说| 四虎永久在线免费观看| 国产一区二区免费| 亚洲乱妇老熟女爽到高潮的片| 久久精品国产精品亚洲人人| 中文字幕免费视频| 亚洲精品久久无码| 久久被窝电影亚洲爽爽爽| 91在线视频免费看| jizz免费一区二区三区| 亚洲丝袜中文字幕|