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

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

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

    子非魚

    BlogJava 首頁 新隨筆 聯系 聚合 管理
      21 Posts :: 0 Stories :: 1 Comments :: 0 Trackbacks

    2008年1月24日 #


    eclipse瘦身后發現jboss server view找不到

    原因: org.jboss.ide.eclipse.as.feature中定義:

     <requires>
              ...
              <import plugin="org.eclipse.wst.server.ui.doc.user"/>
              ...
    </requires>

    該doc插件包在瘦身時被干掉了,導致jbossideplugin未正常加載,恢復該包即可
    posted @ 2011-09-15 18:40 子非魚 閱讀(286) | 評論 (0)編輯 收藏

         摘要:   閱讀全文
    posted @ 2009-03-29 13:27 子非魚| 編輯 收藏

         摘要:   閱讀全文
    posted @ 2009-03-28 11:54 子非魚 閱讀(908) | 評論 (1)編輯 收藏

         摘要: 內存溢出與JVM參數設置  閱讀全文
    posted @ 2009-03-28 10:09 子非魚| 編輯 收藏

         摘要: 轉自 http://topic.csdn.net/u/20080929/02/4e0ef626-98ee-4d6d-96ed-fe40afe8290b.html  閱讀全文
    posted @ 2009-03-28 09:18 子非魚| 編輯 收藏

    轉自:http://lemon.javaeye.com/blog/51480
            http://m.tkk7.com/fhawk/archive/2007/01/16/28993.html
    利用IKeyBindingService接口為Action綁定快捷鍵:

    1、
    設置commands extension

       <extension
               
    point = "org.eclipse.ui.commands">
               
    <!-- activeKeyConfiguration項用來說明所綁定快捷鍵的初始設置 -->
               
    <activeKeyConfiguration value="org.eclipse.ui.defaultAcceleratorConfiguration"/>
               
    <!-- 如果快捷鍵設置有多套,可以添加多個類別 -->
               
    <category
                   
    name="intelliPlatform.Category1"
                   description
    ="Test description"
                   id
    ="intelliPlatform.Category1"/>
               
    <!-- 其中id為這個command的ID,相關的action通過這個ID標志找到這個command -->
               
    <command
                 
    name="intelliPlatform.command.DataSource"
                 category
    ="intelliPlatform.Category1"
                 description
    ="數據源配置"
                 id
    ="com.longtop.intelliplatform.ide.project.commands.DataSource"/>
            
    <!-- 具體的快捷鍵設置,其中command指定實際的coomand的ID -->
            
    <keyBinding
                 
    command="com.longtop.intelliplatform.ide.project.commands.DataSource"
                 configuration
    ="org.eclipse.ui.defaultAcceleratorConfiguration"
                 keySequence
    ="Ctrl+Shift+D"/>
       
    </extension>
     以上是設置了plugin.xml中command extension,并指定了keybinding,在keybinding中
     的keysequence中的字符串是設置的快捷鍵。 

    ------------

    在具體的Action配置中,只要在其屬性definitionId設置成command的ID即可,示例如下:
    <action
     
    label="Sample Action"
     icon
    ="icons/sample.gif"
     class
    ="cli.bacchus.portal.ui.actions.BacchusAction"
     tooltip
    ="Hello, Eclipse world"
     menubarPath
    ="sampleMenu/sampleGroup"
     toolbarPath
    ="sampleGroup"
     id
    ="bacchus.portal.ui.actions.BacchusAction"
     definitionId
    ="com.longtop.intelliplatform.ide.project.commands.datesource">
    </action>

    注意:當給相關的action設置完definitionID后,必須保證其中設置的command是有的,而且是正確的,否則有可能導致該action顯示不出來。
    更具體的信息請參考eclipse開發參考中關于擴展點org.eclipse.ui.commands的詳細描述。

    ------------

    2、
     建立Acion,在此建立的action可以是實現IAction接口的任何類。比較方便的是繼承
     org.eclipse.jface.Action,然后在新類中覆蓋父類的run() 方法.

     public class CopyAction extends Action{
       
    public CopyAction(){
        setId(
    "org.example.copyaction");
        setActionDefinitionId(
    "com.longtop.intelliplatform.ide.project.commands.DataSource");
       }

     }

    3、
    在創建CopyAction的instance之后,將copyActionInstance用IKeyBindingService綁定到
    指定的command。
    獲得IKeyBinddingservice的一種簡單方式為:
    IKeyBindingService keyBindingService = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActivePart().getSite().getKeyBindingService();
    keyBindingService.registerAction(copyActionInstance);


    注意:
    1、action的definitionid和command定義的id必須一致。
    2、當指定的keySequence與系統默認的沖突時,如:在窗體的菜單欄中
    指定了Edit->Copy(默認的快捷鍵為Ctrl+C),若將上面的keySequence改為
    M1+C(Ctrl+C)則系統默認的快捷鍵(Ctrl+C)將更改為Ctrl+Insert。即RCP默認
    的為用戶指定的優先,系統動態更新。
    3、IKeyBindingService指定的快捷鍵是有作用范圍的。




    為主菜單綁定快捷鍵

    主菜單的快捷鍵即為 Alt + 菜單名稱中帶下劃線的字母
    定義主菜單快捷鍵只要在主菜單lable中確定的字母前面加上&字符即可
    如:
    plugin.properties  menulabel = &Intelliplatform
    plugin_zh.properties menulabel = 平臺(&I)
    (注意:在該label引用的properties國際化文件中加,直接在plugin.xml中加好像無效,此處存疑)
    posted @ 2008-10-06 15:18 子非魚| 編輯 收藏

    JAVA中HashMap的成員遍歷  
    方法一:  
            Set   entries;  
            entries=map.keySet(); 
            Iterator   iter=entries.iterator();  
            while(iter.hasNext()){  
                  Object   obj=iter.next();  
                  System.out.println(obj+":"+map.get(obj));      
            }            

       
        方法二:      
            Set   entries;  
            entries=map.entrySet();
            Iterator   iter=entries.iterator();  
            while(iter.hasNext())  
            {  
                  System.out.println(iter.next()+"   ");      
            }  

    另外,JAVA中 interface和class都可以作為對變量的聲明。


        public static void copyDirtoDest(String srcDir, String toDir) {
            Copy copyDir 
    = new Copy();
            copyDir.setOverwrite(
    true);
            copyDir.setProject(
    new Project());
            FileSet fileSet 
    = new FileSet();
            fileSet.setDir(
    new File(srcDir));
            copyDir.addFileset(fileSet);
            File dest 
    = new File(toDir);

            copyDir.setTodir(dest);
            copyDir.execute();
        }


        
    public static void copyFiletoDestDir(String srcFile, String destDir) {
            Copy copy 
    = new Copy();
            copy.setProject(
    new Project());
            copy.setFile(
    new File(srcFile));
            copy.setTodir(
    new File(destDir));
            copy.execute();
        }


        
    public static void makeDir(String dir) {
            Mkdir mkdir 
    = new Mkdir();
            mkdir.setProject(
    new Project());
            mkdir.setDir(
    new File(dir));
            mkdir.execute();
        }


        
    public static void copyFiletoDestandRename(String srcFile, String destFile) {
            Copy copyTask 
    = new Copy();
            copyTask.setProject(
    new Project());
            copyTask.setFile(
    new File(srcFile));
            copyTask.setTofile(
    new File(destFile));
            copyTask.execute();
        }


        
    public static void moveFiletoDest(String srcFile, String destDir) {
            Move move 
    = new Move();
            move.setProject(
    new Project());
            move.setFile(
    new File(srcFile));
            move.setTodir(
    new File(destDir));
            move.execute();
        }


    驗證文件夾名稱是否符合java包名規范
    //弱驗證(只要能被java支持的名稱,如中文名稱)
    IStatus val = JavaConventions.validatePackageName(folder);                 
    if (val.getSeverity() == IStatus.ERROR) {
         
    return false;
    }
     
    /**
         * 強驗證:是否是嚴格符合命名規范的包名,標識:以字母開頭,字母與數字的組合,字母必須都是小寫。
         * 
    @param str1
         * 
    @return
         
    */

        
    public static boolean isPackageName(String str1){
            String regex 
    = "^[a-z][a-z[\\d]]*";  
            Pattern p 
    = Pattern.compile(regex);
            Matcher m 
    = p.matcher(str1);        
            
    return  m.matches();
        }


    hibernate3 hql 參數亂碼問題
    Hql中有中文參數(如from test as c where c.name='張三')的話被翻譯成sql的時候會出現亂碼,解決方法:
    在Spring的配制文件applicationContext.xml文件中添加以下代碼:
        <property name="hibernateProperties">
            
    <props>
                     
                
    <prop key="hibernate.query.factory_class">
                    org.hibernate.hql.classic.ClassicQueryTranslatorFactory
                
    </prop>
            
    </props>
        
    </property>

    list轉Array
    (IAction[]) list.toArray(new IAction[0]);
    (IAction[]) list.toArray(new IAction[list.size()]);
    posted @ 2008-04-12 23:07 子非魚| 編輯 收藏


    打包時過濾文件

    在build.properties中的bin.excludes加入要過濾的文件
    (例如:過濾jar包中所有文件夾下的CC配置文件.copyarea.db,應該填寫 bin.excludes = **/.copyarea.db )



    構建時過濾文件

     

    Properties -> Java Compiler -> Building

    勾選Enable project specific settings, 在Output folder欄的Filtered Resources中填寫你要過濾的文件   (例如:過濾bin目錄中所有文件夾下的CC配置文件.copyarea.db,應該填寫 *.copyarea.db)


    posted @ 2008-02-20 10:10 子非魚| 編輯 收藏

    內部類調用外部類對象(轉)
    內部類可以使用外部類名.this引用外部類的當前對象,然后就可以使用外部類的任何屬性和方法了   
      class   OuterClass{     
      
    public   void   show()   {   
            System.out.println(
    "method   of  out   class");   
      }
       
      
    class   InnerClass{   
      
    public   void   showStr(){   
      OuterClass.
    this.show()   
      }
       
      }
      


    String[] strs = str.split(",");


    web.xml中配置tag-lib間接引用

    <%@ taglib uri="http://www.ccb.cn/xmdc" prefix="xmdc"%>

            在web.xml中增加下面的內容:
      <taglib>
        
    <taglib-uri>http://www.ccb.cn/xmdc</taglib-uri>
        
    <taglib-location>/WEB-INF/xmdc.tld</taglib-location>
      
    </taglib>

    小穎反編譯工具無法反編譯jdk1.5以上的class的解決辦法

    下載可以反編譯1.5以上的jdk編譯的class的新版本jad.exe,替換掉在window路徑下的小穎用的老版本的 jad.exe ,小穎就好用了。

    其實小穎也就是jad.exe的一個shell,替換了就好了。

    jad的下載地址:http://www.kpdus.com/jad.html#download

    posted @ 2008-01-24 11:30 子非魚| 編輯 收藏

    主站蜘蛛池模板: 成年人在线免费观看| 精品一卡2卡三卡4卡免费视频 | 一区二区3区免费视频| 免费观看的毛片手机视频| 亚洲一卡2卡三卡4卡无卡下载| 麻豆一区二区免费播放网站| 久久精品国产亚洲AV蜜臀色欲| 7723日本高清完整版免费| 亚洲人成777在线播放| 波多野结衣在线免费视频| 亚洲天堂2016| 免费看大美女大黄大色| 久久精品亚洲日本波多野结衣| 日韩毛片免费在线观看| 黄色网址在线免费观看| 亚洲综合色成在线播放| 国产在线精品观看免费观看| 国产成A人亚洲精V品无码性色| 日韩精品免费在线视频| 亚洲国产精品成人久久久 | 国产免费爽爽视频免费可以看| 偷自拍亚洲视频在线观看| 丁香亚洲综合五月天婷婷| 二个人看的www免费视频| 亚洲国产人成在线观看69网站 | 黄页网站在线看免费| 亚洲欧美日韩综合久久久| 免费在线观看视频a| a级片免费在线播放| 亚洲成人在线免费观看| 好男人www免费高清视频在线| 国产精品无码亚洲一区二区三区| 亚洲人成电影在线播放| 未满十八18禁止免费无码网站| 亚洲国产精品线观看不卡| 亚洲国产av一区二区三区| 久久青草精品38国产免费| 中文有码亚洲制服av片| 国产精品亚洲产品一区二区三区 | 91青青国产在线观看免费| 亚洲av日韩av永久无码电影|