摘要:
在Java Web开发中,经常会用到跳转页面的方法,一般有下面两种方法。HttpServletResponse response = new HttpServletResponse();response.sendRedirect(location)和RequestDispatcher rd = new RequestDispatcher();rd.forward(request, response) 跳转方式http://localhost:8080/Test应用运用forward方法只能重定向到同一个Web应用程序中的一个资源。而sendRedirect方法可以让你重定向到任何URL。表单f 阅读全文
摘要:
package Sambo;public class URLtoUTF8 { //将汉字转换为编码 public static String toUtf8String(String s) { StringBuffer sb = new StringBuffer(); for (int i = 0; i = 0 && c <= 255) { sb.append(c); } else { byte[] b; try { ... 阅读全文