Flex 与 java 通讯 【转】
2.2 代码实现
下面给出了FlexBuilder工程的一个文件,设置了Flash的布局。
view plaincopy to clipboardprint?
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" width="600" height="400">
<mx:Label text="选择用户类型:" width="148" height="35"
fontSize="20" fontFamily="Georgia" x="38" y="40"/>
<!-- 用户类型 -->
<mx:Array id="userTypeArray">
<mx:Object label="普通用户" data="1" />
<mx:Object label="管理员" data="2" />
</mx:Array>
<!-- 下拉列表框,选择用户类型 -->
<mx:ComboBox id="userTypeCombo" width="160" height="35"
editable="false" fontSize="16"
horizontalCenter="-25" verticalCenter="-148"
dataProvider="{userTypeArray}"/>
<!-- 查询按钮 -->
<mx:Button id="selUsersBtn" label="查询" fontSize="20"
width="103.93939" height="35" x="387.8" y="37.1"
click="selUsersBtnOnClick()" />
<!-- 查询结果显示 -->
<mx:AdvancedDataGrid id="usersDataGrid" designViewDataType="flat"
x="9" y="109" width="582" height="230"
selectionMode="singleRow" enabled="true" textAlign="center"
dataProvider="{userArrayColl}" >
<!-- 表格的各列 -->
<mx:columns>
<mx:AdvancedDataGridColumn
headerText="序号" dataField="idxCol" fontSize="16"/>
<mx:AdvancedDataGridColumn
headerText="用户名" dataField="nameCol" fontSize="16"/>
<mx:AdvancedDataGridColumn
headerText="密码" dataField="pwdCol" fontSize="16"/>
</mx:columns>
</mx:AdvancedDataGri
相关文档:
1. Java语言基础
谈到Java语言基础学习的书籍,大家肯定会推荐Bruce Eckel的《Thinking in Java》。它是一本写的相当深刻的技术书籍,Java语言基础部分基本没有其它任何一本书可以超越它。该书的作者Bruce Eckel在网络上被称为天才的投机者,作者的《Thinking in C++》在1995年曾获SoftwareDevel ......
第一章 概述
版权声明
此文档由本人负责整理总结,并对该文档保有有限责任权利,此文档只能用于学习以及教学,请勿用作商业用途,因此而
产生的法律问题,本人一概不负责。 本人声明,此文档资料为本人教学经验和网络资料收集合并之成果 ......
//使用abstract目的是为了让使用者只能调用getInstance获取实例
public abstract class RegexUtil {
public static void main(String[] args) {
RegexUtil ru = RegexUtil.getInstance();
String regexp = "(\\d+.\\d+.\\d+.\\d+):(\\d+)";
String data = "ldap://192.168.16.152:389/";
......
传智播客JAVA培训2010-5-21EMS项目总结1
EMS项目都过去了三天,我对自己的能力也越来越怀疑,现在每每想起从前自己对JAVA只有十分之一解的时间,感觉自己是多么的强大,而如今学得越多,反而发现在自己越来越是那样的无知。面向知识浩瀚的海洋,真的感觉到自己是沧海一粟。人们都说,现在的年青人太浮躁了,真的是这样吗 ......
/*Copyright (c) 2006 Adobe Systems Incorporated
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, m ......