题库管理系统,用最新的jsp技术开发的,里面有一些比较好的方法,希望与大家共享

源代码在线查看: tools.java

软件大小: 69 K
上传用户: jecksonchen
关键词: jsp 题库 管理系统 技术开发
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 * Tools.java
				 *
				 * Created on 2006年10月24日, 下午1:02
				 *
				 * To change this template, choose Tools | Template Manager
				 * and open the template in the editor.
				 */
				
				package TiKuMS;
				
				/**
				 *
				 * @author hp
				 */
				public class Tools {
				    public static String toChinese(String strvalue)
				    {
				        try{
				            if(strvalue==null)
				            return null;
				            else
				            {
				                strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK");
				                return strvalue;
				            }
				        }catch(Exception e){
				            return null;
				        }
				    }
				    /** Creates a new instance of Tools */
				    public Tools() {
				    }
				    
				}
							

相关资源