all gone

          all gone

          #

          JSP 處理MySQL數(shù)據(jù)庫時的中文問題

          以前遇到JSP 處理MySQL數(shù)據(jù)庫時的中文問題時,采取的是很笨的一種方法,直接用字符串編碼轉(zhuǎn)換函數(shù)進(jìn)行轉(zhuǎn)換,這次從網(wǎng)上搜了一下,找到了一個使用Filter的可行方法。在Tomcat 5.5+ MySQL4.0.16下通過。

          filter類源碼是從網(wǎng)上找的,如下
          /**
           *
           */
          package com.lzy;

          import java.io.IOException;
          import javax.servlet.Filter;
          import javax.servlet.FilterChain;
          import javax.servlet.FilterConfig;
          import javax.servlet.ServletException;
          import javax.servlet.ServletRequest;
          import javax.servlet.ServletResponse;

          /**
           * @author lzy
           *
           */
          public class SetCharacterEncodingFilter implements Filter {
           
           protected String encoding = null;
              protected FilterConfig filterConfig = null;
              protected boolean ignore = true;


           /* (non-Javadoc)
            * @see javax.servlet.Filter#init(javax.servlet.FilterConfig)
            */
           public void init(FilterConfig filterConfig) throws ServletException {
            // TODO Auto-generated method stub
            this.filterConfig = filterConfig;
               this.encoding = filterConfig.getInitParameter("encoding");
               String value = filterConfig.getInitParameter("ignore");
               if (value == null)
                this.ignore = true;
               else if (value.equalsIgnoreCase("true"))
                this.ignore = true;
               else if (value.equalsIgnoreCase("yes"))
                this.ignore = true;
               else
                this.ignore = false;


           }

           /* (non-Javadoc)
            * @see javax.servlet.Filter#doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
            */
           public void doFilter(ServletRequest request, ServletResponse response,
             FilterChain chain) throws IOException, ServletException {
            
            // TODO Auto-generated method stub
            if (ignore || (request.getCharacterEncoding() == null)) {
             String encoding = selectEncoding(request);
             if (encoding != null)
              request.setCharacterEncoding(encoding);
            }
            chain.doFilter(request, response);
           }

           /* (non-Javadoc)
            * @see javax.servlet.Filter#destroy()
            */
           public void destroy() {
            // TODO Auto-generated method stub
            
            this.encoding = null;
               this.filterConfig = null;


           }
           
            protected String selectEncoding(ServletRequest request) {

                   return (this.encoding);

               }


          }

          在web.xml 文件中作如下設(shè)置:(我使用的是Struts框架)
          <filter>
          <filter-name>Encoding</filter-name>
          <filter-class>com.lzy.SetCharacterEncodingFilter</filter-class>
          <init-param>
          <param-name>encoding</param-name>
          <param-value>GBK</param-value>
          </init-param>
          </filter>

          <filter-mapping>
          <filter-name>Encoding</filter-name>
          <servlet-name>action</servlet-name>
          </filter-mapping>
          <filter-mapping>
          <filter-name>Encoding</filter-name>
          <url-pattern>*.jsp</url-pattern>
          </filter-mapping>


          最后,連接數(shù)據(jù)庫時,使用下面的url:
          jdbc:mysql://localhost:3306/數(shù)據(jù)庫名?useUnicode=true&characterEncoding=GBK

          posted @ 2005-12-18 22:57 all gone 閱讀(482) | 評論 (0)編輯 收藏

          Spring之Hello World

          1.下載Spring相關(guān)的開發(fā)包
          下載地址:http://sourceforge.net/project/showfiles.php?group_id=73357
          有spring-framework-1.2.6-with-dependencies.zip,一個是spring-framework-1.2.6.zip,最好下載with-dependencies的,里面有另外一些附加包,下載后解壓縮,dist目錄下是spring自身的jar,lib目錄下是附加的jar。
          2.新建Java Project,將spring.jar(dist目錄下)和commons-logging.jar(lib目錄下)添加到project的build path中。
          3.新建POJO Bean類:HelloBean
          //HelloBean.java
          /**
           *
           */
          package com.lzy;

          /**
           * @author lzy
           *
           */
          public class HelloBean{
           
           private String hello;
           
           public void sayHello(){
            System.out.println(this.getHello());
           }

           /**
            * @return Returns the hello.
            */
           public String getHello() {
            return hello;
           }

           /**
            * @param hello The hello to set.
            */
           public void setHello(String hello) {
            this.hello = hello;
           }
           

          }


          4.新建文件bean.xml,將在這個XML文件中為一個HelloBean的實(shí)例的hello屬性賦值。
          //bean.xml
          <?xml version="1.0" encoding="UTF-8"?>
          <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "<beans>
          <description>Spring Quick Start</description>
          <bean id="helloBean" class="com.lzy.HelloBean">
            <property name="hello">
             <value>hello world</value>
            </property>
          </bean>
          </beans>

          5.新建測試類:TestSpring
          //TestSpring.java
          /**
           *
           */
          package com.lzy;

          import java.util.Locale;

          import org.springframework.context.ApplicationContext;
          import org.springframework.context.support.FileSystemXmlApplicationContext;

          /**
           * @author lzy
           *
           */
          public class TestSpring {

           /**
            * @param args
            */
           public static void main(String[] args) {
            // TODO Auto-generated method stub
            
            ApplicationContext ctx=new FileSystemXmlApplicationContext("bean.xml");
              HelloBean hello=(HelloBean)ctx.getBean("helloBean");
            hello.sayHello();
           }

          }


          6.運(yùn)行測試類:
              如果沒有出錯,輸出中將會看到“hello world”。

          posted @ 2005-12-14 22:07 all gone 閱讀(1051) | 評論 (0)編輯 收藏

          僅列出標(biāo)題
          共17頁: First 上一頁 5 6 7 8 9 10 11 12 13 下一頁 Last 
          主站蜘蛛池模板: 钦州市| 岚皋县| 海门市| 宜都市| 荔浦县| 巍山| 全州县| 盐边县| 临朐县| 务川| 抚松县| 辉县市| 文水县| 新乐市| 浦东新区| 黎城县| 贵定县| 宿松县| 大宁县| 濉溪县| 永寿县| 甘南县| 同德县| 三亚市| 永春县| 旬邑县| 金平| 江源县| 梓潼县| 镇江市| 锦屏县| 同心县| 台安县| 英山县| 天祝| 巨鹿县| 安多县| 墨脱县| 聂荣县| 周至县| 仪陇县|