摘要:
http://tiles.apache.org/framework/tutorial/integration/freemarker.htmlFreeMarker is a templating framework that can be used as a replacement for JavaServer Pages (JSP). Tiles can be used with FreeMarker through the use of Tiles FreeMarker package.ConfigurationTo use FreeMarker together with TilesAdd 阅读全文
摘要:
http://brosinski.com/regex/RegEx TesterEclipse Regular Expression TesterFeaturesTest and search for regular expressionMatches are colorized, for an easy visual clueSupport for pattern flags (e.g. Pattern.DOTALL)LiveEval evaluates your regular expression while you are typing it, gives feedback on pos 阅读全文
摘要:
import java.util.Scanner;publicString convertStreamToString(InputStream is){ returnnewScanner(is).useDelimiter("\\A").next();}http://weblogs.java.net/blog/pat/archive/2004/10/stupid_scanner_1.htmlStupid Scanner tricks...Posted by pat on October 24, 2004 at 4:18 AM EDTOne of the things I 阅读全文
摘要:
Here's an example how to do it with java.net.URLConnection:String url ="http://example.com";String charset ="UTF-8";String param1 =URLEncoder.encode("param1", charset);String param2 =URLEncoder.encode("param2", charset);String query =String.format("pa 阅读全文