首頁  >  文章  >  資料庫  >  在jsp中作HTTP认证的方法_MySQL

在jsp中作HTTP认证的方法_MySQL

WBOY
WBOY原創
2016-06-01 14:10:371077瀏覽

    最近研究了jsp中作HTTP认证的问题,它的工作方式如下:


          *

End of data


          * We don''t try to stop the converion when we find the"="end of data padding char.
          * We simply add zero bytes to the unencode buffer.
        */
        public static String decode(String encoded)

        {
                StringBuffer sb=new StringBuffer();
                int maxturns;
                //work out how long to loop for.
                if(encoded.length()%3==0)
                maxturns=encoded.length();
                else
                maxturns=encoded.length()+(3-(encoded.length()%3));
                //tells us whether to include the char in the unencode
                boolean skip;
                //the unencode buffer
                byte[] unenc=new byte[4];
                byte b;
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn