acc
wlcacc
全部博文(170)
FireWorkflow(0)
Oracle(9)
ExtJS(19)
面试题集锦(5)
其他(2)
JavaScript(22)
DIV+CSS(12)
网页制作(0)
网络技术(2)
ASP(1)
Tomcat(1)
OS(0)
DB(0)
Hibernate(5)
Java(0)
Spring(1)
Struts(2)
Fireworks(15)
Windows(7)
Java(30)
MySQL(11)
2014年(7)
2010年(2)
2009年(62)
2008年(25)
2007年(67)
2006年(7)
knife800
alunfirs
格伯纳
Bsolar
浪花小雨
chengccy
qingfeng
laishiwa
Iqcw1368
分类:
2007-10-04 07:03:58
package onlineexam;import java.io.IOException;import java.sql.Connection;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import javax.servlet.jsp.JspWriter;public class Tools { public static String codestring(String s){//处理乱码的方法 String str=s; try { byte b[]=str.getBytes("ISO-8859-1"); str=new String(b); return str; } catch(Exception e) { return str; } } public static void showalert(String string, JspWriter out) throws IOException {//使用javascript在JSP中弹出窗口 String str=string; out.println(""); } public static void goback(JspWriter out) throws IOException {//使用javascript返回上级页面 out.println(""); } public static void redirect(String url,JspWriter out) throws IOException{//使用javascript打开新页面 out.println(""); } public static void close(JspWriter out) throws IOException{//使用javascript关闭当前页面,并且无提示. out.println(""); } }
上一篇:window xp中浏览器不显示白色背景怎么办?
下一篇:MySql 数据类型
登录 注册