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

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

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

    當幸福來敲門

    我就會牢牢抓住!
    隨筆 - 50, 文章 - 3, 評論 - 8, 引用 - 0
    數據加載中……

    2012年2月22日

    需求工程師的工作內容

    1.和業務部門 、客戶溝通(溝通是整個需求設計到開發使用為止);
    2.學習業務;
    3.有意識聽速求(客戶最急需的),也就是優先級問題;
    4.搜集需求,整合,提煉,完成分析;(考慮周全找關聯 找核心)
    5.編寫需求產品文檔(文字和圖列、流程圖等相結合)
    6.掌握相關工具;(比如visio/axure)
    7.文檔系統講解(講解對象:開發和測試)
    8.驗證開發完后的產品(驗證結束后再測試);
    9.用戶培訓(需求工程師主持);
    10.了解相關系統(了解整個業務面 而不是 內部的功能點);

    注意:數據表設計中盡量存可分析的信息代碼;

    posted @ 2014-03-05 15:23 wyx 閱讀(201) | 評論 (0)編輯 收藏

    面試題積累

    1. struts1和struts2的區別
    2. hibernate和ibatis的區別
    3. json和xml的區別
    4. ajax的原理
    5. ajax和iframe嵌套有什么區別
    6. gbk utf8 iso-8859-1都是多少字節
    7. extjs和jquery的區別
    8. js從前端如何解決跨域問題
    9. 單例模式的優點,工廠模式的原理
    10. spring的mvc模式
    11. jdk1.7新功能
    12. 為什么會出現亂碼

    posted @ 2014-03-04 15:35 wyx 閱讀(229) | 評論 (0)編輯 收藏

    Hibernate 查詢有關in的查詢

    http://www.iteye.com/problems/74892

    List<Integer> ids = new ArrayList<Integer>();
    ids.add(3);
    ids.add(4);
    ids.add(5);
    Query query=session.createQuery(from document where id in (:ids)); 
    query.setParameterList("ids", ids);
    query.list();

    posted @ 2013-11-18 17:42 wyx 閱讀(627) | 評論 (0)編輯 收藏

    用hibernate插入數據保證插入數據ID同步 ,插入之后返回對象

    public FDataReport addFDataReport(FDataReport datareport);//數據新錄入返回對象,對應的就會把ID也返回

    posted @ 2013-11-04 17:43 wyx 閱讀(255) | 評論 (0)編輯 收藏

    關于登錄界面 記住用戶名和密碼的一段代碼

    Cookie cookies[]=request.getCookies();
        Cookie stCookie=null;
        String password=null;
        String passwordvalue=null;
        String usernamevalue=null;
        String cookiename = null;
        String nameandpassword[]=new String[3];
        if (cookies != null) {
       for (int i = 0; i < cookies.length; i++) {
        stCookie = cookies[i];
        cookiename = stCookie.getName();
        if (cookiename!=null && cookiename.equalsIgnoreCase("db_password")) {
         passwordvalue = stCookie.getValue();
         password = passwordvalue;//.substring(8, passwordvalue.length()-3);
         nameandpassword[1] = password.trim();
        }
        if (cookiename!=null && cookiename.equalsIgnoreCase("db_username")) {
         usernamevalue = stCookie.getValue();
         nameandpassword[0] = usernamevalue.trim();
        }
        }
     }





    <body>
    <p>
           <label for="LoginName">
            用戶名 / 郵箱:
           </label>
           <input class="text" type="text" id="LoginName" name="LoginName"
            value="<%=nameandpassword[0]==null?"":nameandpassword[0] %>" />
          </p>
          <p>
           <label for="Password">
            密碼:
           </label>
           <input class="text" type="password" value="<%=nameandpassword[1]==null?"":nameandpassword[1] %>" name="Password" id="Password" />
          </p>


    </body>

    posted @ 2013-11-01 15:08 wyx 閱讀(311) | 評論 (0)編輯 收藏

    form表單提交兩次原因

    昨天做用戶注冊,添加用戶時候總是提交兩次
    最后才找到原因 提交表單的按鈕就是設置成button的了 但是名稱是submitButton也不可以 所以修改下按鈕名稱就可以了!!!
    ⊙﹏⊙b汗

    posted @ 2013-10-18 09:21 wyx 閱讀(425) | 評論 (0)編輯 收藏

    關于安全問題——用戶中心

    1.當用戶操作用戶中心的信息,編碼獲取用戶對象應該是通過該用戶登錄保存的session或者cookie獲得,
    而不是通過用戶ID獲得(否則當有人知道通過ID傳值,容易輕易修改掉其他用戶的信息)

    2.前臺下載也需要通過后臺處理 放置業內人士知道下載文件真實地址,獲得大量數據信息

    posted @ 2013-09-04 17:13 wyx 閱讀(210) | 評論 (0)編輯 收藏

    FCKeditor 取值

    《轉自http://blog.sina.com.cn/s/blog_5f66526e0100kf6b.html

    主要步驟:

    第一步:導入需要的js文件(根據實際情況修改相應路徑)
    <script src="js/jquery.js" type=text/javascript></script>   
    <script src="fckeditor/fckeditor.js" type="text/javascript"></script>
    第二步:初始化(根據實際情況修改相應路徑)   

    sBasePath    = '/duotunkf/fckeditor/' ;#編輯器所在文件夾;
    oFCKeditor    = new FCKeditor('content') ;
    oFCKeditor.BasePath = sBasePath ;
    oFCKeditor.Value = 'test' ;
    oFCKeditor.ToolbarSet = 'Basic' ;
    oFCKeditor.Create() ;

    其中content為頁面你所綁定的textArea的id或name

    第三步:取值

    var oEditor = FCKeditorAPI.GetInstance('content');  
    editorValue = oEditor.GetHTML();  
    第四步:賦值(更新的時候先把原有的值賦給textarea)

    var oEditor = FCKeditorAPI.GetInstance('content');  
    oEditor.SetHTML("value"); 

     

    下面是本人寫的一個賦值測試程序,供大家參考。源碼如下:

    <html>
     <head>

         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <script src="js/jquery-1.3.2.min.js"></script>
            <script src="fckeditor/fckeditor.js"></script>
            <script>
            $(document).ready(function(){
              $("#test").click(function(){
        var oEditor = FCKeditorAPI.GetInstance('content');  
        oEditor.SetHTML($("#test option:selected" ).text());
        });
      });
            </script>
     </head>
     <body>
      
      <form action="" method="post">
            <script>
                sBasePath    = '/duotunkf/fckeditor/' ;#編輯器所在文件夾;
                oFCKeditor   = new FCKeditor('content') ;
                oFCKeditor.BasePath = sBasePath ;
                oFCKeditor.Value = 'test' ;
                oFCKeditor.ToolbarSet = 'Basic' ;
                oFCKeditor.Create() ;
      </script>
       <br>
                <label for="test">
          <select name="test" size="4" id="test">
            <option value="1">i.點擊這里改變編輯器的值</option>
            <option value="2">ii.點擊這里改變編輯器的值</option>
            <option value="3">iii.點擊這里改變編輯器的值</option>
               </select>
              </label>
      </form>
     </body>
    </html>


    posted @ 2013-07-31 14:19 wyx 閱讀(181) | 評論 (0)編輯 收藏

    關于數據表建設的int 和 number varchar和nvarchar的區別


    提交了,剛才修正了一些問題;一主鍵需要設置number類型同時告訴擴充到10
    管華(管華) 10:44:15
    你剛才是int類型,,int最大是到6萬多吧,,如果你設置這個,意味著到時你到6萬多的會員后,系統出問題,插入不進去了,到時你還得改;
    管華(管華) 10:45:46
    第二,你用的是字符VARCHAR2類型,這個;類型在oracle里不太好,會持久化占用一部分空間,比如你設置的VARCHAR2(1000),他不管你里面有沒有數據,都會占用這1000個字符的空間;因此需要改為NVARCHAR2 ,他是自適應,當你沒存儲值,他不占據空間


    另外根據有些字段,比如人名  name  NVARCHAR2(20)分配20個字符就可了,分配500個,會浪費多余的空間同時使得系統慢碎片多;因此根據實際情況,酌情分配

    posted @ 2013-07-12 10:49 wyx 閱讀(331) | 評論 (0)編輯 收藏

    sql語句特殊字符處理

    update tc_report t set xlsfile='ChinaLivestock'||chr(38)||'FeedWeeklyMarketReport20130703.doc' where t.xlsfile like 'China Livestock & Feed Weekly Market Report 20130703%'

    posted @ 2013-07-04 10:36 wyx 閱讀(274) | 評論 (0)編輯 收藏

    Tomcat修改文件重啟問題

    將tomcat下的bin\startup.bat下的文件打開后,最下面有一句話  call "%EXECUTABLE%" jpda start %CMD_LINE_ARGS%,,復制我這個替換你那個,保存后,即可實現不重啟就編譯java

    posted @ 2013-07-01 11:32 wyx 閱讀(176) | 評論 (0)編輯 收藏

    JavaBean中打印信息到JSP頁面

    http://blog.csdn.net/sclxf/article/details/4654080

    posted @ 2013-05-16 17:47 wyx 閱讀(164) | 評論 (0)編輯 收藏

    JS 獲得系統當前時間和未來一周時間

    例子:

    function getDate(day){
       var zdate=new Date();
       var sdate=zdate.getTime()-(1*24*60*60*1000);
       var edate=new Date(sdate-(day*24*60*60*1000)).format("yyyy-MM-dd");
       return edate;
    }

     function changevalue(obj){
           alert(obj);
           var a = getDate(+7);
           var b = getDate(+31);
           if(obj=="8"){
           document.getElementById("enddate").value=b;
           }else{
           document.getElementById("enddate").value=a;
           }
     }

    posted @ 2013-05-08 15:54 wyx 閱讀(384) | 評論 (0)編輯 收藏

    轉換PDF遇到的問題java.lang.UnsatisfiedLinkError: no jcom in java.library.path

    java.lang.UnsatisfiedLinkError: no jcom in java.library.path
    將 jcom.dll 文件放在  C:\WINDOWS\system32 和jdk的bin   目錄下

    posted @ 2013-04-10 16:14 wyx 閱讀(426) | 評論 (0)編輯 收藏

    BUG 調試 加入斷點但是跳轉時候沒有走

    設置問題  Debug model選中

    posted @ 2013-04-03 15:34 wyx 閱讀(203) | 評論 (0)編輯 收藏

    投研項目 文檔 總結

    1.下載模塊:年鑒、研究報告、企業榜單和行業數據(需要權限控制)
    2.FTP使用:

    posted @ 2013-03-27 11:09 wyx 閱讀(267) | 評論 (0)編輯 收藏

    2013-03-13 項目開發 總結 連載記錄

    1.針對不同類型跳轉不同的action方法 除了使用JS以外  還可以 使用參數獲得參數例如method=....不同值來跳轉像不同的方法
    例子:分國別 (method="showCountryList")  分地區(method="showAreaList")  
            后臺 String method = request.getParameter("method");
                 request.setAttribute("method", method);
        if (method != null && method.equals("showCountryList")) {
         return showCountryList(map, form, request, response);//分國別
       } else if (method != null && method.equals("showAreaList")) {
         return showAreaList(map, form, request, response);//分地區
       }
    2.Jsp........記得使用IFram嵌套
    <iframe width="100%" height="800" class="share_self"  frameborder="0" scrolling="no" src="/tyreportAction.do?method=lookReportInfo&bid=${record.bid } "></iframe>
     總結:思維要活躍些  往往一個問題有很多種解決方法的

    posted @ 2013-03-13 09:38 wyx 閱讀(172) | 評論 (0)編輯 收藏

    大文本值CLOB取值 和 存值

    存值
     Clob  organdetail =Hibernate.createClob(request.getParameter("organdetail").equals("")?"":request.getParameter("organdetail").trim());// 機構簡介
       取值 顯示JSP
    <%=ToolsCommon.Clob2String(institutions.getOrgandetail())==null?"":ToolsCommon.Clob2String(institutions.getOrgandetail())%>


     public static String Clob2String(java.sql.Clob clob) {
      String s1 = "";
      char ac[] = new char[200];

      if (clob == null)
       return null;
      java.io.Reader reader = null;
      int i;
      try {
       reader = clob.getCharacterStream();
       while ((i = reader.read(ac, 0, 200)) != -1)
        s1 = s1 + new String(ac, 0, i);
      } catch (Exception exception1) {
       // throw new java.sql.SQLException(exception1.getMessage());
       System.out.println(exception1.toString());
      }

      finally {
       try {
        reader.close();
       } catch (Exception _ex) {
       }
      }
      return s1;

     }

    posted @ 2013-02-28 10:20 wyx 閱讀(361) | 評論 (0)編輯 收藏

    Java 刪除文件夾 和 文件 集合

    《此文拷貝自http://kxjhlele.iteye.com/blog/323657

    1,驗證傳入路徑是否為正確的路徑名(Windows系統,其他系統未使用)


    // 驗證字符串是否為正確路徑名的正則表達式
    private static String matches = "[A-Za-z]:\\\\[^:?\"><*]*";
    // 通過 sPath.matches(matches) 方法的返回值判斷是否正確
    // sPath 為路徑字符串

    2,通用的文件夾或文件刪除方法,直接調用此方法,即可實現刪除文件夾或文件,包括文件夾下的所有文件


        /**
         *  根據路徑刪除指定的目錄或文件,無論存在與否
         *@param sPath  要刪除的目錄或文件
         *@return 刪除成功返回 true,否則返回 false。
         */
        public boolean DeleteFolder(String sPath) {
            flag = false;
            file = new File(sPath);
            // 判斷目錄或文件是否存在
            if (!file.exists()) {  // 不存在返回 false
                return flag;
            } else {
                // 判斷是否為文件
                if (file.isFile()) {  // 為文件時調用刪除文件方法
                    return deleteFile(sPath);
                } else {  // 為目錄時調用刪除目錄方法
                    return deleteDirectory(sPath);
                }
            }
        }

    3,實現刪除文件的方法,

        /**
         * 刪除單個文件
         * @param   sPath    被刪除文件的文件名
         * @return 單個文件刪除成功返回true,否則返回false
         */
        public boolean deleteFile(String sPath) {
            flag = false;
            file = new File(sPath);
            // 路徑為文件且不為空則進行刪除
            if (file.isFile() && file.exists()) {
                file.delete();
                flag = true;
            }
            return flag;
        }

    4,實現刪除文件夾的方法,

        /**
         * 刪除目錄(文件夾)以及目錄下的文件
         * @param   sPath 被刪除目錄的文件路徑
         * @return  目錄刪除成功返回true,否則返回false
         */
        public boolean deleteDirectory(String sPath) {
            //如果sPath不以文件分隔符結尾,自動添加文件分隔符
            if (!sPath.endsWith(File.separator)) {
                sPath = sPath + File.separator;
            }
            File dirFile = new File(sPath);
            //如果dir對應的文件不存在,或者不是一個目錄,則退出
            if (!dirFile.exists() || !dirFile.isDirectory()) {
                return false;
            }
            flag = true;
            //刪除文件夾下的所有文件(包括子目錄)
            File[] files = dirFile.listFiles();
            for (int i = 0; i < files.length; i++) {
                //刪除子文件
                if (files[i].isFile()) {
                    flag = deleteFile(files[i].getAbsolutePath());
                    if (!flag) break;
                } //刪除子目錄
                else {
                    flag = deleteDirectory(files[i].getAbsolutePath());
                    if (!flag) break;
                }
            }
            if (!flag) return false;
            //刪除當前目錄
            if (dirFile.delete()) {
                return true;
            } else {
                return false;
            }
        }

    5,main() 方法


        public static void main(String[] args) {

            HandleFileClass hfc = new HandleFileClass();
            String path = "D:\\Abc\\123\\Ab1";
            boolean result = hfc.CreateFolder(path);
            System.out.println(result);
            path = "D:\\Abc\\124";
            result = hfc.DeleteFolder(path);
            System.out.println(result);

        }


    main() 方法只是做了一個簡單的測試,建立文件夾和文件都是本地建立,情況考慮的應該很全面了,包括文件夾包含文件夾、文件。文件的不同情況…………

     

    實現沒有問題,可以正確刪除文件夾和文件。

     

    對于其他類型文件的操作繼續學習…………




    posted @ 2013-01-18 15:58 wyx 閱讀(300) | 評論 (0)編輯 收藏

    JFreechar

    http://m.tkk7.com/amigoxie/archive/2007/09/30/149765.html

    posted @ 2012-12-26 15:51 wyx 閱讀(187) | 評論 (0)編輯 收藏

    orcle修改屬性字段 并且保留原有值

    1.原字段類型是字符串 使用“||”連接
    update table1 set num = substr(num,0,instr(num,'-'))||(substr(num,instr(num,'-')+1) +9) 
    2.原字段是數字 使用+連接
    UPDATE table1SET num = num+10 
    3.截取 update tc_report t set xlsfile=substr(xlsfile,6) where xlsfile like '%uku\%'

    posted @ 2012-11-12 10:20 wyx 閱讀(329) | 評論 (0)編輯 收藏

    form表單 修改 多選框默認選中

    1.放到HashMap中
      String varsort=exp.getVarsort();
       String vars[]=null;
       HashSet setvar = new HashSet();
       if(varsort!=null&&!varsort.trim().equals("")){
        vars=varsort.substring(0,varsort.length()-1).split(",");
        for(int i=0;i<vars.length;i++){
         setvar.add(vars[i].trim());
        }
       }
    2. contains比較是否包含
    <% if(varsorts!=null&&varsorts.size()>0){
               for(int j=0;j<varsorts.size();j++){
                TDictionarys td=varsorts.get(j);
                %>
             <input type="checkbox" value="<%=td.getDataid() %>" <%if(setvar.contains(String.valueOf(td.getDataid()).trim())){out.print("checked");} %> onclick="getBreeds()" name="varsort" id="varsort" />
             <label for="checkbox" class="font12">
             <%=td.getName() %>
                </label>
                <%
               }
              }
             %>
            

    posted @ 2012-09-21 18:03 wyx 閱讀(1328) | 評論 (1)編輯 收藏

    頁面級緩存處理

    前提  列表走了數據庫查詢
    1.引入架包  <%@ taglib uri="oscache" prefix="cache"%>
    2.包含要緩存的部分
    <cache:cache key="dbnewscache" time="3600">  
            <%List<Article> list=new CmsByMysql().getNews(); %>
              <c:forEach var="cu" items="<%=list%>">
                   <li>
              <a href="${cu.url}">${cu.titleContent} </a>
                </li>
              </c:forEach>
    </cache:cache>

    posted @ 2012-09-21 17:25 wyx 閱讀(226) | 評論 (0)編輯 收藏

    Ifram 父子頁面 JS調用

    <iframe marginwidth="0" framespacing="0" marginheight="0" frameborder="0"
    name="uploadframe" id="uploadframe" src="c.html" scrolling="no" width="100" height="100" ></iframe>
    如想在c.html 中寫一些代碼去改變parent.html 中的一些內容,以下代碼可作為參考:

    1、parent.window.frames 可返回parent.html 中所有的iframe;返回結果應該是一個數組,用parent.window.frames[iframeId]可得到iframeId;

    2、用parent.document.getElementById('xxxx')可得到父里的xxxx,并改變相應的值,例如:parent.document.getElementById('xxxx').className = 'test';

    3、如果我想在父中再創建一個元素,直接用parent.appendChild(yyyy)在firefox中是可以的,但在IE(最起碼IE6)是不行的; 所以,要把創建這個動作放在父中來完成,在子中調用;

     parent.document.getElementById("pinming").innerHTML = retText2;

    posted @ 2012-07-24 15:29 wyx 閱讀(715) | 評論 (0)編輯 收藏

    jquery目錄樹 js實現 目錄數插件

    2011-07-13 10:07

    jQuery 目錄樹插件介紹——ligerTree

     

     

    一,簡介 

    ligerTree的功能列表:

    1,支持本地數據和服務器數據(配置data或者url)

    2,支持原生html生成Tree

    3,支持動態獲取增加/修改/刪除節點

    4,支持大部分常見的事件

    5,支持獲取選中行等常見的接口方法

     

    二,第一個例子

    引入庫文件

    遵循LigerUI系列插件的設計原則(插件盡量單獨),ligerTree是一個單獨的插件,也就是說只需要引入plugins/ligerTree.js和樣式css文件就可以使用(當然必須先引入jQuery),在這個例子中,我把tree用到的樣式和圖片分離了出來,有興趣的朋友可以下載來看看

      

    <script src="lib/jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
    <link href="lib/ligerUI/skins/Aqua/css/ligerui-tree.css" rel="stylesheet" type="text/css"/>
    <script src="lib/ligerUI/js/plugins/ligerTree.js" type="text/javascript"></script>

    加入HTML

      

    <ul id="tree1">
    <li>
    <span>節點1</span>
    <ul>
    <li>
    <span>節點1.1</span>
    <ul>
    <li><span>節點1.1.1</span></li>
    <li><span>節點1.1.2</span></li>
    </ul>
    </li>
    <li><span>節點1.2</span></li>
    </ul>
    </li>
    </ul>

    調用ligerTree

    <table style="margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: baseline !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-weight: normal !important; font-style: normal !important; font-size: 1em !important; min-height: inherit !important; border-collapse: collapse !important; background-position: initial initial !important; background-repeat: initial initial !important; "><td style="font-size: 1em !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0.5em !important; border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: initial !important; border-style: initial !important; border-color: initial !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; text-align: left !important; float: none !important; vertical-align: top !important; position: static !important; left: auto !important; top: auto !important; right: auto !important; bottom: auto !important; height: auto !important; width: auto !important; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-weight: normal !important; font-style: normal !important; min-height: inherit !important; border-left-style: none !important; border-left-color: initial !important; color: rgb(0, 0, 0) !important; background-position: initial initial !important; background-repeat: initial initial !important; ">$("#tree1").ligerTree();

    效果圖

    三,常用場景

    場景一:不使用復選框: 

    $("#tree2").ligerTree({ checkbox: false });

    場景二:不使用復習框和圖標: 

    $("#tree3").ligerTree({ checkbox: false, parentIcon: null, childIcon: null });

    效果如圖:

    ?

    append(parentNode, newdata)增加節點集合clear()清空collapseAll()全部節點都折疊demotion(treenode)降級為葉節點級別expandAll()全部節點都展開getChecked()獲取選擇的行(復選框)getData()獲取樹的數據源getParentTreeItem(treenode, level)獲取父節點getSelected()獲取選擇的行hasChildren(treenode)是否包含子節點 loadData(node, url, param)加載數據remove(node)刪除節點upgrade(treenode)升級為父節點級別

    posted @ 2012-07-04 16:59 wyx 閱讀(2096) | 評論 (1)編輯 收藏

    讀取 文本 文件內容 FileInputStream 亂碼處理

      StringBuffer content = new StringBuffer();
    //  FileInputStream fis = null;
    //  byte[] b = new byte[2048];
    //  try {
    //    if(lang!=null&&lang.trim().equals("10")){
    //     fis = new FileInputStream(passwordTemplatePath);
    //     }else if(lang!=null&&lang.trim().equals("20")){
    //      fis = new FileInputStream(passwordTemplateEnPath);
    //     }else if(lang!=null&&lang.trim().equals("30")){
    //      fis = new FileInputStream(passwordTemplateChinaEnPath);
    //     }
    //     int m = 0;
    //   while ((m = fis.read(b)) != -1) {
    //    content.append(new String(b, 0, m));
    //   }
    //passwordTemplatePath 文本 文件地址
      BufferedReader br = null;
      try {
        if(lang!=null&&lang.trim().equals("10")){
             br =  new BufferedReader(new InputStreamReader(new FileInputStream(passwordTemplatePath), "utf-8"));
          }else if(lang!=null&&lang.trim().equals("20")){
           br =  new BufferedReader(new InputStreamReader(new FileInputStream(passwordTemplateEnPath), "utf-8"));
         }else if(lang!=null&&lang.trim().equals("30")){
            br =  new BufferedReader(new InputStreamReader(new FileInputStream(passwordTemplateChinaEnPath), "utf-8"));
          }
        String s = null;
        while ((s = br.readLine()) != null) {
        content.append(s);
       }
      } catch (Exception e) {
       e.printStackTrace();
      } finally {
       try {
        br.close();
       } catch (IOException e) {
        e.printStackTrace();
       }
      }

    posted @ 2012-06-26 17:15 wyx 閱讀(2111) | 評論 (2)編輯 收藏

    線程等待問題處理

    class MyThread implements Runnable {
    @Override
    public void run() {
      System.out.println("1、進入run()方法休眠");
      try {
       System.out.println("2、線程休眠20秒");
       Thread.sleep(20000);//這里休眠20秒
       System.out.println("3、線程正常休眠完畢");
      } catch (InterruptedException e) {
       System.out.println("4、線程發生異常休眠被中斷");
       return;//返回方法調用處
      }
      System.out.println("5、線程正常結束run()方法體");
    }
    }
    public class InterruptDemo {

    public static void main(String[] args) {
      MyThread mt = new MyThread();
      Thread t = new Thread(mt,"線程A");
      t.start();//啟動線程
    //========================================================
      try {
       Thread.sleep(2000);  //保證線程至少執行2秒
      } catch (InterruptedException e) {
       e.printStackTrace();
      }
    //========================================================
      t.interrupt();//中斷線程
    }
    }

    posted @ 2012-06-21 15:21 wyx 閱讀(197) | 評論 (0)編輯 收藏

    "Mon Dec 28 00:00:00 CST 2008"的格式字符串轉換 yyyy-MM-dd 格式

    public static void main(String[] args)
     {
       try {
          java.util.Date date;
          // 首先設置"Mon Dec 28 00:00:00 CST 2008"的格式,用來將其轉化為Date對象
          DateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US);

          //將已有的時間字符串轉化為Date對象
          date = df.parse("Tue Jun 19 00:00:00 CST 2012");// 那天是周一
          // 創建所需的格式
          df = new SimpleDateFormat("yyyy-MM-dd");
          String str = df.format(date);// 獲得格式化后的日期字符串
          System.err.println(str);// 打印最終結果
         } catch (Exception e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
         }


     }

    posted @ 2012-06-19 16:12 wyx 閱讀(6981) | 評論 (1)編輯 收藏

    JAVA開發者最常去的25個英文網站 (轉載http://handawei.iteye.com/blog/675034)

  • http://www.infoq.com/ - Info IT新聞
  • http://www.apache.org/ - Apache基金會
  • http://www.springsource.org/ - 廣大Java開發者喜愛的Spring
  • http://www.hibernate.org/ - 開源ORM框架
  • http://sourceforge.net/ - 開源技術的集結地
  • http://www.javaalmanac.com – Java開發者年鑒一書的在線版本. 要想快速查到某種Java技巧的用法及示例代碼, 這是一個不錯的去處.
  • http://www.onjava.com – O’Reilly的Java網站. 每周都有新文章.
  • http://java.sun.com – 官方的Java開發者網站 – 每周都有新文章發表.
  • http://www.developer.com/java – 由Gamelan.com 維護的Java技術文章網站.
  • http://www.java.net – Sun公司維護的一個Java社區網站.
  • http://www.builder.com – Cnet的Builder.com網站 – 所有的技術文章, 以Java為主.
  • http://www.ibm.com/developerworks/java – IBM的Developerworks技術網站; 這是其中的Java技術主頁.
  • http://www.javaworld.com – 最早的一個Java站點. 每周更新Java技術文章.
  • http://www.devx.com/java – DevX維護的一個Java技術文章網站.
  • http://www.fawcette.com/javapro – JavaPro在線雜志網站.
  • http://www.sys-con.com/java – Java Developers Journal的在線雜志網站.
  • http://www.javadesktop.org – 位于Java.net的一個Java桌面技術社區網站.
  • http://www.theserverside.com – 這是一個討論所有Java服務器端技術的網站.
  • http://www.jars.com – 提供Java評論服務. 包括各種framework和應用程序.
  • http://www.jguru.com – 一個非常棒的采用Q&A形式的Java技術資源社區.
  • http://www.javaranch.com – 一個論壇,得到Java問題答案的地方,初學者的好去處。
  • http://www.ibiblio.org/javafaq/javafaq.html – comp.lang.java的FAQ站點 – 收集了來自comp.lang.java新聞組的問題和答案的分類目錄.
  • http://java.sun.com/docs/books/tutorial/ – 來自SUN公司的官方Java指南 – 對于了解幾乎所有的java技術特性非常有幫助.
  • http://www.javablogs.com – 互聯網上最活躍的一個Java Blog網站.
  • http://java.about.com/ – 來自About.com的Java新聞和技術文章網站.
  • posted @ 2012-06-15 15:44 wyx 閱讀(205) | 評論 (0)編輯 收藏

    EL表達式處理字符串 是否 包含 某字符串 截取 拆分...............

    JSP頁面頁頭添加
    <%@ taglib uri="/WEB-INF/taglib/c.tld" prefix="c"%>
    <%@ taglib prefix="fn" uri="頁面內容如下: 

    <c:if test="${fn:contains(record.name,'樣例')==false}">
                                     <%
             if ((f != null && f.trim().equals("0"))&&name!=null&&!name.trim().equals("免費報告")) {
            %><a
             href="javascript:void(0);alert('很抱歉,您無權訪問!如需訪問請購買產品或聯系管理員...');">
             ${record.name} </a>
            <%
             } else {
            %>
            <a
             href="/tcreportAction.do?method=lookReportInfo&bid=${record.bid } ">${record.name}</a>
            <%
             }
            %>
             </c:if>
               <c:if test="${fn:contains(record.name,'樣例')}">
                                       <a
             href="/tcreportAction.do?method=lookReportInfo&bid=${record.bid } ">${record.name}</a>
           
                                     </c:if>



    ${wjcd.lrsj}原來得到的是如2006-11-12 11:22:22.0

    ${fn:substring(wjcd.lrsj, 0, 16)}

    使用functions函數來獲取list的長度

    ${fn:length(list)}

     

     

     

    1. fn:contains(string, substring)   
    2. 假如參數string中包含參數substring,返回true   
    3.   
    4. fn:containsIgnoreCase(string, substring)   
    5. 假如參數string中包含參數substring(忽略大小寫),返回true   
    6.   
    7. fn:endsWith(string, suffix)   
    8. 假如參數 string 以參數suffix結尾,返回true   
    9.   
    10. fn:escapeXml(string)   
    11. 將有非凡意義的XML (和HTML)轉換為對應的XML character entity code,并返回   
    12.   
    13. fn:indexOf(string, substring)   
    14. 返回參數substring在參數string中第一次出現的位置   
    15.   
    16. fn:join(array, separator)   
    17. 將一個給定的數組array用給定的間隔符separator串在一起,組成一個新的字符串并返回。   
    18.   
    19. fn:length(item)   
    20. 返回參數item中包含元素的數量。參數Item類型是數組、collection或者String。假如是String類型,返回值是String中的字符數。   
    21.   
    22. fn:replace(string, before, after)   
    23. 返回一個String對象。用參數after字符串替換參數string中所有出現參數before字符串的地方,并返回替換后的結果   
    24.   
    25. fn:split(string, separator)   
    26. 返回一個數組,以參數separator 為分割符分割參數string,分割后的每一部分就是數組的一個元素   
    27.   
    28. fn:startsWith(string, prefix)   
    29. 假如參數string以參數prefix開頭,返回true   
    30.   
    31. fn:substring(string, begin, end)   
    32. 返回參數string部分字符串, 從參數begin開始到參數end位置,包括end位置的字符   
    33.   
    34. fn:substringAfter(string, substring)   
    35. 返回參數substring在參數string中后面的那一部分字符串   
    36.   
    37. fn:substringBefore(string, substring)   
    38. 返回參數substring在參數string中前面的那一部分字符串   
    39.   
    40. fn:toLowerCase(string)   
    41. 將參數string所有的字符變為小寫,并將其返回   
    42.   
    43. fn:toUpperCase(string)   
    44. 將參數string所有的字符變為大寫,并將其返回   
    45.   
    46. fn:trim(string)   
    47. 去除參數string 首尾的空格,并將其返回 


    截取字符串!使用!

     
    <c:if test="${fn:length(onebeans.info)>100 }">${ fn:substring( onebeans.info ,0,100)} ...</c:if>
     <c:if test="${fn:length(onebeans.info)<=100 }">${  onebeans.info }</c:if>


    posted @ 2012-06-14 14:38 wyx 閱讀(29475) | 評論 (0)編輯 收藏

    Enter回車 鍵盤事件 終止提交表單方法 終止執行submit

    終止執行submit
    <form name="myf" action="/....."> 
    <input name="pmcode" id="pmcode" value="<%=pmcode%>"
                type="text" class="shuihao" onkeydown="if(event.keyCode==13){event.keyCode = 9 ;searchCodes();return false;}" size="20" maxlength="20" />
    </form>
     當回車的時候 將鍵盤碼變成別的  例如 If( event.keyCode == 13) event.keyCode = 9 之類。

    posted @ 2012-05-17 11:20 wyx 閱讀(293) | 評論 (0)編輯 收藏

    js傳以 0 開頭的值問題解決

      msg+="<li id=\""+codes[i].value+"\" name=\""+codes[i].value+"\" ><INPUT class=\"ac\" onclick=\"javascript:nextSetcode('"+codes[i].value+"');oper('"+codes[i].value+"');\" type=\"button\" name=\"codes\" value=\""+codes[i].value+"\" /></li>";
    動態參數據 JS方法加 單引號  方法如上

    posted @ 2012-05-11 10:37 wyx 閱讀(920) | 評論 (0)編輯 收藏

    JSP中實現添加一行,刪除一行操作

    <%@ page language="java" import="java.util.*" pageEncoding="GBK"%>

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <SCRIPT type="text/javascript">
    function numberCells()
    {
        var count=0;
        for (i=0; i < document.all.Tab.rows.length; i++)
        {
            for (j=0; j < document.all.Tab.rows(i).cells.length; j++)
            {
                document.all.Tab.rows(i).cells(j).innerText = count;
                count++;
            }
        }
    }

    function tb_addnew()
    {
    var ls_t=document.all("Tab")
    maxcell=ls_t.rows(0).cells.length;
    mynewrow = ls_t.insertRow();
        for(i=0;i <maxcell;i++)
        {
    mynewcell=mynewrow.insertCell();
    mynewcell.innerText="a"+i;

        }
    }

    function tb_delete()
    {
    var ls_t=document.all("Tab");

    ls_t.deleteRow() ;
    }

    </SCRIPT>
    <html>
     <head>
     <script type="text/javascript">
      function addRow(TabId){
      //獲取要插入行的表格
      var table = document.getElementByIdx_x(TabId);
       //在最后一行插入一行
       var newRow = table.insertRow(table.rows.length);
        //在該行插入單元格
        var newCel1 = newRow.insertCell(0);
         var newCel2 = newRow.insertCell(1);
         var newCel3 = newRow.insertCell(2);
         newCel1.innerHTML = "第一列";
         newCel2.innerHTML = "第二列";
         newCel3.innerHTML = "第三列";
         }
         </script>
     </head>
     <body>
      <center>
       <table id="Tab" border="1" cellspacing="0" cellpadding="0">
        <tr>
         <td>
          第一列
         </td>
         <td>
          第二列
         </td>
         <td>
          第三列
         </td>
       </table>
       <br>
       <input type="button" onclick="addRow('Tab');" value="插入行"/>
       <input type="button" onclick="tb_delete();" value="刪除行"/>
       <input type="button" onclick="tb_addnew();" value="添加行"/>
       <input type="button" onclick="numberCells();" value="顯示單元個數"/>
       
      </center>
     </body>
    </html>

    posted @ 2012-03-21 16:52 wyx 閱讀(3077) | 評論 (1)編輯 收藏

    FineReport學習(一)

    設置單元格的顯示格式 :
      單擊單元格右鍵——樣式——自定義 就OK了
    輸出保存各種文件格式:導航欄,文件——輸出
    http://www.finereport.com/knowledge/faq

    posted @ 2012-03-12 16:06 wyx| 編輯 收藏

    A.jsp iframe B.jsp 子頁面調用父頁面控件

    parent.function()  就可以通過B.jsp去調用A。jsp的函數

    在B.jsp中通過javascript代碼中可以通過parent對象來訪問A.jsp中的內容。在A.jsp中寫的代碼差不多,只要加上"parent."前綴就可以訪問了。

    posted @ 2012-03-07 11:26 wyx 閱讀(851) | 評論 (1)編輯 收藏

    MyEclipse8.6 編輯JSP頁面卡 優化

    步驟:
      1.windows--》preferences
        ——
    2.General——Editors
      ———

    3.File Associations


    將改圖的值設為默認的

    posted @ 2012-03-07 09:49 wyx 閱讀(1507) | 評論 (0)編輯 收藏

    lucenes 查詢

    --分詞收索  
    創建
    String name = rs.getString("name");
        if (name != null && !name.equals(""))
         document.add(new Field("name", name, Field.Store.YES,
           Field.Index.UN_TOKENIZED));
    檢索
    query = new TermQuery(new Term("name", name));      
      booleanQuery.add(query, BooleanClause.Occur.MUST);

    posted @ 2012-02-22 12:29 wyx 閱讀(200) | 評論 (0)編輯 收藏

    主站蜘蛛池模板: 亚洲人成色4444在线观看| 永久在线毛片免费观看| 一区在线免费观看| 美女视频黄免费亚洲| 久久夜色精品国产亚洲AV动态图| 成人免费无码大片A毛片抽搐色欲 成人免费无码大片a毛片 | 亚洲天堂中文字幕在线观看| 国产精品亚洲精品日韩已方| 午夜免费福利在线观看| 免费观看激色视频网站bd| 男人都懂www深夜免费网站| 一级一级一级毛片免费毛片| 看一级毛片免费观看视频| 亚洲精品av无码喷奶水糖心| 亚洲乱码一二三四区乱码| 亚洲成人福利网站| 久久久久久久亚洲Av无码| 久久久久亚洲精品美女| 精品国产亚洲一区二区三区| 亚洲日韩中文字幕日韩在线| 亚洲精品视频免费观看| 一本久久综合亚洲鲁鲁五月天| 日韩电影免费在线观看视频| 成人毛片18岁女人毛片免费看| 国产成在线观看免费视频| 在线永久免费的视频草莓| 精品福利一区二区三区免费视频| 麻花传媒剧在线mv免费观看| 无码精品人妻一区二区三区免费看| 中文字幕免费播放| 国产精品99精品久久免费| 久久免费公开视频| 精品熟女少妇a∨免费久久| 最近2019免费中文字幕6| 在线免费观看你懂的| 99精品视频免费在线观看| 久久精品一本到99热免费| 亚洲综合免费视频| 无码中文在线二区免费| 成人免费视频试看120秒| 免费成人午夜视频|