摘要:
【1】单个符号作为分隔符 String address="上海|上海市|闵行区|吴中路"; String[] splitAddress=address.split("\\|"); //如果以竖线为分隔符,则split的时候需要加上两个斜杠【\\】进行转义 System.out.println(spl 阅读全文
摘要:
import java.awt.Desktop; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; public class aa{ public static void main(String[] args) throws IOException, URISynta... 阅读全文
摘要:
国际化文件路径(src/demos/java/util/locale): myres.properties myres_en_US.properties myres_zh_CN.properties 参考地址 阅读全文
摘要:
struts2的动态方法调用的方式: 1、第一种方式:设置method属性 在Action类中定义一个签名与execute方法相同、只是名字不同的方法,如定义为: public String login() throws Exception{} 然后在struts.xml文件中加一个<action> 阅读全文
摘要:
页面将参数传递给action的三种方式 一是通过属性传值: 将页面和action的的属性值保持一致,在action上写上该属性的set和get方法,这样在页面提交参数的时候,action就会调用set方法将参数值传递给其属性,这种方式主要适用于传递参数比较少的情况! 二是通过DomainModel传 阅读全文
摘要:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P 阅读全文