- 浏览: 436821 次
- 性别:
最新评论
-
nianhua2008:
你好,请问哪个cocos版本可以读取cbx文件?
Cocos3dx入门 -
ihic11:
我的为什么Receive.jsp一直有乱码?请帮忙
网银在线支付注意事项 -
奔跑的蓝猫:
楼主你好!请问这两个文件怎么使用啊?
楼主能把源代码发给我下吗 ...
简易视频聊天 -
wx_hello:
不错。。学习了。。
jquery解析xml -
ocaicai:
圣人啊,救星啊,我被这个问题折磨得蛋疼!对了,我在google ...
struts2+urlrewrite
文章列表
注意:
"."需要用"\"来转义
<rule>
<note>进入指定pid的章节</note>
<from>^/novels/([A-Za-z0-9]{15})([0-9]+)\.html$</from>
<to>/getChapter?cnovelid=$1&cno=$2</to>
</rule>
刚开始学习urlrewrite filter,碰到一些问题,我希望在工程中不在浏览器中显示出action?XX=XX这样的url,一律都改成xxx/xxx这样的形式,在顺的时候算成功了,把/工程名/XXX映射成了login.action?aaa=XXX这样的形式,可是不能用forward的形式只能用redirect,改成forward以后明明/工程名/login.action有的,结果会报404找不到,如果改成/工程名/XXX.jsp却可以被访问到,因为我使用了struts2,心里在想是不是直接forward过去了而login.action没有被拦截到所以会说找不到,可是看网上很多例子里面也有X ...
<s:property>标签的escape属性默认值为true,即不解析html代码,直接将其输出。 如:novel.NTitle的值为
<font color=red>邪门</font>
则<s:property value="#novel.NTitle">就直接输出原值。若想让标签解析html标签输出:
邪门
则将escape设为false
<s:property value="#novel.NTitle" escape="false"/>
/**
* 获取服务器WebRoot的绝对路径
* @return
*/
public String getWebRootPath(){
String classpath = this.getClass().getResource("SysConfig.class").toString();
String rootpath = classpath.substring(classpath.indexOf(":")+2, classpath.lastIndexOf("WEB-INF")).replaceAll("% ...
<s:iterator value="#session.novelList" var="novel">
<s:property value="#novel.NTitle"/>
</s:iterator>
说明:
1、#session.novelList
相对于session.getAttribute("novelList");
2、#novel.NTitle
NTtitle是Novel类的一个属性
1、检索实体类
package com.dxcollector.entity;
public class DxNovel implements java.io.Serializable {
private Long id;
private String pid;
private String NTitle;
private String NAuthor;
private String NDesc;
private String NType;
private String NTotalWords;
private String NImgUrl;
pri ...
并不是所有的html标签都有innerHTML属性,比如select标签就不能使用innerHTML属性。
一、MyEclipse下的工程
1、web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http:/ ...
var userCollection:XMLListCollection = new XMLListCollection();
var usersXML:XML = event.result as XML;
var arrayCollection:ArrayCollection = new ArrayCollection();
var xmlList:XMLList = usersXML.elements("user");
userCollection.source = xmlList;
arrayCollection = userCollection.toArra ...
<mx:HTTPService id="clientIpDs"
url="http://192.168.10.135:8080/flcds/getIP.jsp"
useProxy="false" showBusyCursor="true"
resultFormat="text" method="POST"
result="dealResult(event)"
fault="alss(event ...
1、for(var a:String in Object){}
遍历参数名称
2、for each(var a:String in Object){}
遍历参数实际值
3、with(objname){}
{}访问变量属性,可以不加上对象名
4、初始化函数的参数
function check(name:String,type:String="1"){}
调用时check("abc"),check("name","2")都可
5、创建动态类
使用关键字dynamic,如:
p ...
this.store.baseParams = this.store.baseParams || {};
this.store.baseParams[this.paramName] = v;
this.store.reload()
1、web.xml中配置lcds
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>flcds</display-na ...
文件1、
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" fontSize="12" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FF7999, #FE7F9D]" he ...
注意:
1、webchat工程的名称,此处连接的是工程webchat下的publish.mxml
pnc.connect("rtmp://localhost/webchat/publish/");
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" fontSize="12" ba ...