Archive

‘專業技術’ 分類過的Archive

營利事業統一編號驗證完全手冊(Javascript,Java,C#,PHP)

2008年11月7日 8 則評論

前幾天在網路上申請資料時,發現該網站有判斷營利事業統一編號,原來這個編號也是可以驗證的呀?真是孤陋寡聞呀!! 所以小弟在網路上找了找,發現資源還蠻多的,所以整理整理方便大家使用

首先,要先看看公式理論,這篇是在酷!學園 找到的:

(一) 長度:共八位,,全部為數字型態。
(二) 計算公式
1、各數字分別乘以 1,2,1,2,1,2,4,1。
2、公式如下:
D1 D2 D3 D4 D5 D6 D7 D8
* 1 2 1 2 1 2 4 1 (第一列 * 第二列)

A1 B1 A2 B2 A3 B3 A4 B4 (Bx:相乘後的十位數)
+ C1 C2 C3 C4 (Cx:相乘後的個位數)

X1 X2 X3 X4 X5 X6 X7 X8 (Xx:相加後的十位數)
Y7 (Yx:相加後的個位數)
Z1= X1 + X2 + X3 + X4 + X5 + X6 + X7 + X8 或
Z1= X1 + X2 + X3 + X4 + X5 + X6 + Y7 + X8

3、當第 7 位數為 7 者,可取相加之倒數第二位取 0 及 1 來計算如 Z1 及 Z2 計算其和。
4、假如 Z1 或 Z2 能被 10 整除,則表示營利事業統一編號正確。
(三) 範例 ( 以 0 0 2 3 8 7 7 8 為例 )
0 0 2 3 8 7 7 8
* 1 2 1 2 1 2 4 1 (第一列 * 第二列)

0 0 2 6 8 1 2 8 (Bx:相乘後的十位數)
+ 4 8 (Cx:相乘後的個位數)

0 0 2 6 8 5 1 8 (Xx:相加後的十位數)
0 (Yx:相加後的個位數)
Z1= 0+ 0+ 2+ 6+ 8+ 5+ 1+ 8 = 30 或
Z2= 0+ 0+ 2+ 6+ 8+ 5+ 0+ 8 = 29
因 30 能被 10 整除,故營利事利統一編號正確。

這個是在MyChat 數位男女查到的,不過驗證時有Bug,可能是貼上來不支援\這個字元,所以不見了再加上去即可,以下已經是可以使用的code:

  function checkTB(sid){
       var tbNum = new Array(1,2,1,2,1,2,4,1);
       var temp = 0;
       var total = 0;
       alert(sid.length);
       if(sid==””) alert(“請先輸入欲檢驗的營利事業統一編號!”);
       else if(!sid.match(/^\d{8}$/)) alert(“營利事業統一編號長度不夠或格式有誤!請注意營利事業統一編號格式為八碼數字!”);
       else{
             for(var i = 0; i < tbNum.length ;i ++){
                 temp = sid.charAt(i) * tbNum[i];
                 total += Math.floor(temp/10)+temp%10;
             }
             if(total%10==0 || (total%10==9 && sid.charAt(6)==7)) alert(“營利事業統一編號正確!”);
             else alert(“營利事業統一編號錯誤!”);
       }
  }

接下來的也是Javascript版本,是在向前走 是唯一的選擇的blog找到的:

function idchk(idvalue) {
  var tmp = new String(“12121241”);
  var sum = 0;
  re = /^\d{8}$/;
  if (!re.test(idvalue)) {
      alert(“格式不對!”);
      return false;
   }
  for (i=0; i< 8; i++) {
    s1 = parseInt(idvalue.substr(i,1));
    s2 = parseInt(tmp.substr(i,1));
    sum += cal(s1*s2);
  }
  if (!valid(sum)) {
     if (idvalue.substr(6,1)==”7″) return(valid(sum+1));
  } 
  return(valid(sum));
}
function valid(n) {
  return (n%10 == 0)?true:false;
}
function cal(n) {
  var sum=0;
  while (n!=0) {
     sum += (n % 10);
     n = (n – n%10) / 10;  // 取整數
    }
  return sum;
}

接下來就是JAVA版本的驗證程式,是在台灣電腦工的blog裡找到的,同篇還有其它的驗證程式,不錯的文章喔:

public static final Pattern TWBID_PATTERN = Pattern
.compile(“^[0-9]{8}$”);
/**
營利事業統一編號檢查程式
可至 http://www.etax.nat.gov.tw/ 查詢營業登記資料
@since 2006/07/19
/
public static boolean isValidTWBID(String twbid) {
boolean result = false;
String weight = “12121241”;
boolean type2 = false; //第七個數是否為七
if (TWBID_PATTERN.matcher(twbid).matches()) {
int tmp = 0, sum = 0;
for (int i = 0; i < 8; i++) {
tmp = (twbid.charAt(i) – '0') (weight.charAt(i) – '0');
sum += (int) (tmp / 10) + (tmp % 10); //取出十位數和個位數相加
if (i == 6 && twbid.charAt(i) == '7') {
type2 = true;
}
}
if (type2) {
if ( (sum % 10) == 0 || ( (sum + 1) % 10) == 0) { //如果第七位數為7
result = true;
}
} else {
if ( (sum % 10) == 0) {
result = true;
}
}
}
return result;
}

再來是C#的驗證程式,是在記憶是苦難的開始Blog找到的:

C# 3.5
public static bool checkCompanyNo(string arg_CompanyNo)
{
var LOGIC = new[] { 1, 2, 1, 2, 1, 2, 4, 1 };
var intSum = 0;

for (var i = 0; i < LOGIC.Length; i++)
{
var intMultiply = int.Parse(arg_CompanyNo.Substring(i,1)) * LOGIC[i];
var intAddition = ((intMultiply / 10) + (intMultiply % 10));
intSum += (intAddition == 10) ? 1 : intAddition;
}

return (intSum % 10 == 0);
}

不過這段code 怪怪的  intSum += (intAddition == 10) ? 1 : intAddition;  似乎有點問題,因為他要的是相乘連加十位數及個位數相加)後可以被整除的,但還有另一個規則是當餘數為9時而且第七位數值和基數相加為1也成立,這裡減化成這行似乎是不可行,所以還是自行調整一下吧!!

這裡還有一篇 C#的,雖然code長了點,但有發佈就要給予鼓勵,這篇是在小卓的程式天空的blog找到的:

public static Boolean isCompanyID(String strIdno)                                                 
                                                                                                  
     if (strIdno == null || strIdno.Trim().Length != 8)                                           
                                                                                                  
         return false;                                                                            
     }                                                                                            
     else if (!isInteger(strIdno))                                                                
                                                                                                  
         return false;                                                                            
     }                                                                                            
                                                                                                  
     int ii;                                                                                      
                                                                                                  
     try                                                                                          
                                                                                                  
         ii = Convert.ToInt32(strIdno);                                                           
     }                                                                                            
     catch (Exception)                                                                            
                                                                                                  
         return false;                                                                            
     }                                                                                            
     int c1;                                                                                      
     int c2;                                                                                      
     int c3;                                                                                      
     int c4;                                                                                      
     int c5;                                                                                      
     int c6;                                                                                      
     int c7;                                                                                      
     int c8;                                                                                      
     try                                                                                          
                                                                                                  
         c1 = Convert.ToInt32(strIdno.Substring(0, 1));                                           
         c2 = Convert.ToInt32(strIdno.Substring(1, 1));                                           
         c3 = Convert.ToInt32(strIdno.Substring(2, 1));                                           
         c4 = Convert.ToInt32(strIdno.Substring(3, 1));                                           
         c5 = Convert.ToInt32(strIdno.Substring(4, 1));                                           
         c6 = Convert.ToInt32(strIdno.Substring(5, 1));                                           
         c7 = Convert.ToInt32(strIdno.Substring(6, 1));                                           
         c8 = Convert.ToInt32(strIdno.Substring(7, 1));                                           
     }                                                                                            
     catch (Exception)                                                                            
                                                                                                  
         return false;                                                                            
     }                                                                                            
                                                                                                  
     int y = c1 + c3 + c5 + c8;                                                                   
     int t = c2 * 2;                                                                              
     y = y + t / 10 + t % 10;                                                                     
     t = c4 * 2;                                                                                  
     y = y + t / 10 + t % 10;                                                                     
     t = c6 * 2;                                                                                  
     y = y + t / 10 + t % 10;                                                                     
     t = c7 * 4;                                                                                  
     y = y + t / 10 + t % 10;                                                                     
     int k = y;                                                                                   
     if (y % 10 == 0)                                                                             
                                                                                                  
         return true;                                                                             
     }                                                                                            
     if (c7 == 7)                                                                                 
                                                                                                  
         y -= 9;                                                                                  
         return y % 10 == 0;                                                                      
     }                                                                                            
     else                                                                                         
                                                                                                  
         return false;                                                                            
     }                                                                                            
  }                                                                                                

所以大致目前常用語言都有了,好像尚缺PHP,雖然小弟喜歡使用Javascript的驗證,不過好像找不太到PHP版本的,因此小弟動手寫了一個:

function checkID($sid) {
$tbNum = array(1,2,1,2,1,2,4,1);
if(strlen($sid)!=8 || !eregi(“^[0-9\*]{8}”,$sid)) return false;
$intSum = 0;
for ($i = 0; $i < count($tbNum); $i++)
{
$intMultiply=substr($sid,$i,1)*$tbNum[$i];
$intAddition=(floor($intMultiply / 10) + ($intMultiply % 10));
$intSum+=$intAddition;
}
return ($intSum % 10 == 0 ) || ($intSum%10==9 && substr($sid,6,1)==7);
}

參考資料:
酷!學園 – [商用軟體]統一編號檢查碼規則 – 驗證公式
MyChat 數位男女 – 營利事業統一編號邏輯檢查 -JavaScript 驗證程式 但有bug
向前走 是唯一的選擇 統一編號的檢查 By JavaScript -JavaScript 驗證程式
台灣電腦工 Java版-常用的身份證、IP、統一編號..檢查程式 -Java 驗證程式
記憶是苦難的開始 檢驗公司統一編號是否正確 C# -C# 驗證程式
檢查統一編號是不是正確 – 小卓的程式天空- 點部落

FCKeditor for PHP 注意事項

2008年11月7日 尚無評論

最近在PHP要使用FCKeditor ,整合起來比JAVA太方便了
首先 要先去下載FCKeditor 小弟用的是2.6.3版本

在使用時,要先載入他的函式庫

<script type=”text/javascript” src=”fckeditor/fckeditor.js”></script>

然後參考php 的sample02.php code 要使用時只要照下面的寫法即可

<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = $sBasePath ;

$oFCKeditor->Config['AutoDetectLanguage'] = false;
$oFCKeditor->Config['DefaultLanguage']  = 'zh' ;  //繁體
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>.
' ;  //預設值
$oFCKeditor->Create() ;
?>

不過小弟不喜歡這種使用方式,他也有提供Javascript版本的,因為可以保留原本的textarea架構
以後要停用或抽換比較方便,所以小弟喜歡用這個方式來套用

<script>
var oFCKeditor;

window.onload = function()
{
var sBasePath = “fckeditor/”;
oFCKeditor = new FCKeditor( 'content', '100%', 300) ;
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.ReplaceTextarea() ;
}

//–>
</script>

預設值就寫在原本的textarea 即可,所以自覺得更簡單方便囉!!

然後如果要採用他的圖片或檔案上傳功能,目前他對PHP也已經完全整合好了
所以使用超方便的,不像Java要另外找人寫的嵌入,要啟用上傳及瀏覽檔案功能
只要到 fckeditor\editor\filemanager\connectors\php\  找到config.php檔案
將檔案內以下幾個參數值調整即可的

//原本是false 就啟用改成 true 吧
$Config['Enabled'] = true ;

//設定你要上傳的目錄,注意如果是linux 平台該目錄要開放可讀寫的權限才可以
$Config['UserFilesPath'] = '/userupload/'

這樣就完成啦,這麼好用的功能只要簡單調整幾個動作就可以完成整合
真是不錯用!!

Categories: WebDesign Tags: ,

String format

2008年9月8日 尚無評論

JDK1.5版之後String 有提供一個format格式,很像c的printf 功能,蠻不錯用的

String.format(String format, Object… args)
String.format(Locale l, String format, Object… args)
   可傳入指定的語言環境、格式字串和參數
   返回一個格式化字符串。

格式字串,用法都差不多,以下簡單說明幾個常用的

%s 顯示字串
%5$-10s 顯示字串從第5位開始,- 為靠左對齊, 20為字串長度
%,10.2d 顯示數值,每三位數用逗點區隔,如不足十位會用空白靠右顯示
%5.2f     顯示浮點數,小數點二位數顯示

詳細的格式字串請參考:
Format http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html

資料來源:
http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#format(java.util.Locale,%20java.lang.String,%20java.lang.Object…)

Categories: JAVA Tags: , ,

Spring JavaMailSenderImpl 寄送Email 認證調整

2008年9月5日 尚無評論

Spring 透過JavaMailSenderImpl 寄送Email時,預設是不透過認證方式寄信的
所以當使用smtp是需要帳號認證的,就要調整一下設定才行

首先要先建立一個class extends Properties,如下:

import java.util.Properties;

public class MailProperties extends Properties {
  private String auth;

  public MailProperties(String auth){
    super.setProperty(“mail.smtp.auth”,auth);
  }
}

然後在引入mail 的configure 檔案中加上使用參數即可:

<bean id=”mailProperties”  class=”spring.email.MailProperties”>
    <constructor-arg index=”0″>
          <value>true</value>
    </constructor-arg>
</bean>

並且在你的JavaMailSenderImpl使用參數中再加上username及password即可:

<bean id=”mailSender”  class=”org.springframework.mail.javamail.JavaMailSenderImpl”>
   <property name=”host”>
     <value>yoursmtpserver</value>
   </property>
   <property name=”username”>
     <value>username</value>
   </property>
   <property name=”password”>
     <value>password</value>
   </property>
   
   <property name=”javaMailProperties”>
     <ref local=”mailProperties”/>
   </property>
   
</bean>

這樣寄信就能支援認證機制囉!!

參考資料:
http://www.cjsdn.net/post/view?bid=20&id=147550&sty=1&tpg=9&age=0

Categories: JAVA Tags: , ,

Java Copy 檔案及資料夾的方法

2008年8月20日 2 則評論

Java對檔案的處理,已經提供非常完整的API
不過像複製檔案的功能,還是要再手動多寫幾行code才行
以下就介紹copy 檔案的方式,順便說一下如何copy 資料夾

1.這是最基本的方式,利用read()方式進行複製動作

public void copyFile(String srFile, String dtFile){
  try{
     File f1 = new File(srFile);
     File f2 = new File(dtFile);
     InputStream in = new FileInputStream(f1);
     OutputStream out = new FileOutputStream(f2);
     byte[] buf = new byte[1024];
     int len;
     while ((len = in.read(buf)) > 0){
       out.write(buf, 0, len);
     }
     in.close();
     out.close();
  }
  catch(FileNotFoundException ex){
     ex.printStackTrace(); 
  }
  catch(IOException e){
     ex.printStackTrace();   
  }
}

2.在JDK 1.4時,多了一些對IO處理的API放在java.nio這個package,叫做NIO (NEW I/O),先前JAVA提供的IO都會blocking IO,因此導致很多Thread在進行IO處理時就會造成整體效能變差,NIO它的最大優點,是可以在同一條 thread 讀寫多個channel而不會被單一的IO blocking限制效率並且也減少多了透過byte[]方式的動作。所以我們也提供NIO複製的方式

public  void copyFile(String srFile, String dtFile){
  try{
       FileChannel srcChannel = new FileInputStream(srFile).getChannel();
       FileChannel dstChannel = new FileOutputStream(dtFile).getChannel();
       dstChannel.transferFrom(srcChannel, 0, srcChannel.size());
       srcChannel.close();
       dstChannel.close();
  } catch (IOException e) {
      e.printStackTrace();   
  }
}

3.複製資料夾,當然能複製檔案外,也可以寫個小method來進行資料夾的複製,有點像xcopy的方式,這裡要注意,以下的程式碼copyFile 是傳入File而非上述sample code的String,請自行再調整一下

public void copyDirectory(File source, File target) {  
       File[] file = source.listFiles();
       for (int i = 0; i < file.length; i++) {  
           if (file[i].isFile()) { 
               File sourceDemo = new File(source.getAbsolutePath() + “/” 
                       + file[i].getName());  
               File destDemo = new File(target.getAbsolutePath() + “/” 
                       + file[i].getName());  
               this.copyFile(sourceDemo, destDemo);  
           }  
           if (file[i].isDirectory()) {
               File sourceDemo = new File(source.getAbsolutePath() + “/” 
                       + file[i].getName());  
               File destDemo = new File(target.getAbsolutePath() + “/” 
                       + file[i].getName());  
               destDemo.mkdir();
               this.copyDirectory(sourceDemo, destDemo);  
           }  
       }
  }

參考資料:

Categories: JAVA Tags: , ,
分頁: 上一頁 1 2 3 ... 15 16 17 18 19 20 21 ... 26 27 28 下一頁