`
qtlkw
  • 浏览: 307164 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
版权声明:如有转载请求,请注明出处:http://blog.csdn.net/yzhz  杨争   一、问题:         编码问题是JAVA初学者在web开发过程中经常会遇到问题,网上也有大量相关的文章介绍,但其中很多文章并没有对URL中使用了中文等非ASCII的字 符造成服务器后台程序解析出现乱码的问题作出准确的解释和说明。本文将详细介绍由于在URL中使用了中文等非ASCII的字符造成乱码的问题。 1、在URL中中文字符通常出现在以下两个地方: (1)、Query String中的参数值,比如http://search.china.alibaba.com/search/offer_s ...
很多人在开发网站开始阶段没有注意到字符集统一的重要性,因此开发的网站不是数据库中存有乱码就是web页面显示为乱码。现以web开发中的字符集为主体讨论在个人和团队web开发中需要注意的问题,和相应的解决方法。 1. 常见问题的解决<o:p></o:p> 比如我在网站开发阶段就遇到两个严重的问题: 我使用的是Zend studio的开发工具,保存代码时也是默认保存的,没有注意到字符集的问题,开始一切正常,但是当我想在页面中添加’©’这个符号的时候,网页不能正常显示。后来发现,zend 默认的保存编码是gb2321编码,而这个编码中不能表示以上那个字符,要显示那个字符有两 ...
Refer to http://www.oracle.com/technetwork/articles/javase/httpcharset-142283.html In route to their final storage destination on the World Wide Web, characters move through various layers of programming interfaces and can cross software and hardware boundaries. This article provides helpful hints ...

GZip Servlet Filter

    博客分类:
  • JAVA
A GZip Servlet Filter can be used to GZip compress content sent to a browser from a Java web application. This text will explain how that works, and contains a GZip Servlet Filter you can use in your own Java web applications. If you do not know what a Servlet filter is, read my text on Servlet Filte ...

Regular Expression

    博客分类:
  • JAVA
package regular; import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegularExpress { private static Pattern illegal_database_field =Pattern.compile("[(\\W+) && [^-+#]]"); public static boolean checkIllegalField(String fieldName) throws Excep ...
https://developers.google.com/web-toolkit/doc/latest/DevGuideUiHandlers Events in GWT use the handler model similar to other user interface frameworks. A handler interface defines one or more methods that the widget calls to announce an event. A class wishing to receive events of a particular type im ...
键盘上一些符号的英文读法真的让人头疼,很多根本就没有统一的念法。上葡语课时我问老师dash在葡语里怎么用,结果她不知道什么是dash,最后经过探讨我们达成共识,我问的是hyphen…… 因为我整天和程序打交道,“-”更多被读作dash,而非程序员更多读作hyphen。比较烦~~ 这里简单整理一下键盘上所有特殊符号的英文读法,最后还有葡语中特殊符号的英文读法。参考资料见本文最后。 ! 叹号 exclamation mark/bang ? 问号 question mark , 逗号 comma . 点号 dot/period/point : 冒号 colon ; 分号 semicolon ” 双 ...

VB knowledge

on error resume next'就是不理是否发生错误,还要往下运行。 '这句话一般放在有可能发生错误的地方。以最后发生的一个错误为准。 If Err.Number <>0 Then    MsgBox Err.Number&vbcr&Err.Description&vbcr&Err.Source End If vbcrlf=回车(carriage return)+换行(line feed) vbcr=回车 在屏幕上,回车就是光标回到行首,换行光标下移一行 针式打印机上,回车是打印头回到左边,换行是要进纸
I got a reply and they said I needed to download the Beta version for Windows and this should clear up the problem. First, I uninstalled the Skype version I had on my PC. Once I did that, I installed this version. Here is the link: http://www.skype.com/intl/en-gb/get-skype/on-your-computer/windows/ ...
引用: http://m.oschina.net/blog/113444 最近看到网上的一篇文章,分析说明ThreadLocal是如何内存泄露的. 但我不这么认为. ThreadLocal设计的很好,根本不存在内存泄露问题. 本文就结合图和代码的例子来验证我的看法. 网上的代码例子普遍是这样子的: public class Test { public static void main(String[] args) throws InterruptedException { ThreadLocal tl = new MyThreadLocal(); tl.set(new M ...
public class ResponseCommunicator { private Logger logger = Logger.getLogger(ResponseCommunicator.class); private Timer timer = null; private long interval = 60000; public ResponseCommunicator() { } public ResponseCommunicator(long interval) { this. ...
转载:http://www.oschina.net/question/157182_72094?from=20121007 什么是连接? 连接,是我们的编程语言与数据库交互的一种方式。我们经常会听到这么一句话“数据库连接很昂贵“。 有人接受这种说法,却不知道它的真正含义。因此,下 ...

Tomcat的Session设置

    博客分类:
  • JAVA
参照: http://mqzsweet.iteye.com/blog/141938 1、为单个WEB设置SESSION 在WEB.XML中添加 xml 代码     <session-config> <session-timeout>15</session-timeout>//单位为分钟 </session-config> 2、为单个Servlet指定会话超时时间 xml 代码     <servlet> <servlet-name>Servlet名称& ...
SUMMARY: This article describes how to change the default HTTP keep-alive value in Microsoft Internet Explorer. When Internet Explorer establishes a persistent HTTP connection with a Web server (by using Connection: Keep-Alive headers), Internet Explorer reuses the same TCP/IP socket that was used t ...

logout.jsp

    博客分类:
  • JAVA
<% session.invalidate(); %> <jsp:forward page="/login.jsp"/>
Global site tag (gtag.js) - Google Analytics