- 浏览: 13030 次
- 性别:
- 来自: 河南
最新评论
文章列表
Jakarta Tapestry是一个开源的Java Web应用框架。你或许会说:"大同小异的东西罢了."多数 情况下,我同意你的观点,然而,只要花上些许时间研究一下,你会发现Tapestry跟别的框架大为不同,它是值得严肃对待的。 Tapestry是一个基于控件的框架以致于用它开发Web应用类似开发传统的GUI应用。你用Tapestry开发Web应用时你无需关注以操作为中心的(operation-centric) Servlet API.引用Tapestry网站上的一句话:"Tapestry用对象(objects),方法(methods),属性(propertie ...
/**
* The doGet method of the servlet. <br>
*
* This method is called when a form has its tag value method equals to get.
*
* @param request the request send by the client to the server
* @param response the response send by the server to the client
* @throws ServletException if ...
/**
* 直接打开本地文件
* */
private void openFile(String localFileUrl) {
String filename = "openFile.bat";
File file = new File(filename);
try {
//创建本地批处理文件
FileOutputStream fos = new FileOutputStream(file);
OutputStreamWriter writer = new OutputStreamWriter(f ...
12个Flex常用功能代码
1。 复制内容到系统剪贴板
1. System.setClipboard(strContent);
2。 复制一个ArrayCollection
1. //dummy solution( well, it works )
2. var bar:ArrayCollection = new ArrayCollection();
3. for each ( var i:Object in ac ){
4. bar.addItem( i );
5. }
6. // fantasti ...
可以用<mx:Grid width="100%" height="100%" horizontalGap="0" verticalGap="0">
<mx:GridRow width="100%" height="20" >
<mx:GridItem width="15%" borderStyle="solid" borderThickness="1&quo ...
Flex 是一个提供开发设计和运行支持的架构,它可以使开发人员创建利用Adobe®
Flash® Player 9 作为前台的“富客户端互联网应用程序/rich Internet applications/RIA”,以满
足用户更为直观和极具交互性的在线体验。
开发 Flex 应用程序的 ...
- 2009-07-15 17:50
- 浏览 785
- 评论(0)
*********************注册码*********************
Flex注册码: 1377-4168-2018-0771-2432-1495 1377-4760-3354-0772-2773-8996 1377-4165-2080-7265-7813-8901 1377-4964-5021-8182-2399-8235 (自己用的Flex3:1377-4260-4983-2510-8542-5740)
LiveCycle Data Services(LCDS)注册码: 1306-4038-4494-1343-9848-7117 1306-4100-8708-943 ...
- 2009-07-07 10:22
- 浏览 1176
- 评论(0)
dragEnabled="true" dropEnabled="true" dragMoveEnabled="true"
通过设置如上三个参数既能实现想要的功能。如果 不设置 dragMoveEnabled="true" 则是拖动到指定位置新增一行数据。
- 2009-06-26 11:38
- 浏览 763
- 评论(0)
当触发事件时,Flex查找事件监听器将经历三个阶段:捕获阶段,定位阶段,冒泡阶段。以下是我对这三个阶段的理解,举例说明:
假设stage上一个btn,现在点击btn触发了一个事件event,之后Flex事件监听器:
1、首先捕获到event的是stage,将stage和event.target进行对比,修改event.currentTarget为stage,发现不相符,继续向下传递给mc,同理,再从mc传递给btn,此时event.target与之相符,currentTarget与target相同。(捕获阶段)
2、执行btn事件侦听函数。(定位阶段)
3、 ...
- 2009-06-26 11:37
- 浏览 1381
- 评论(0)
摘自:http://yexin218.iteye.com/blog/344923
有要使得在Button上出现手型的鼠标,你必须把buttonMode属性值设置成为true,并且把useHandCursor设置成为true. 对于其他组件你则必须把mouseChildren的属性值设置成为false。
mxml代码
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" ...
- 2009-06-26 11:34
- 浏览 1201
- 评论(0)