上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 50 下一页
摘要: Normally, a keystroke registered to a component is activated when the component has the focus. This type of activation condition is called WHEN_FOCUSE 阅读全文
posted @ 2018-09-06 08:36 borter 阅读(154) 评论(0) 推荐(0) 编辑
摘要: The opposite component is the other component affected in a focus event. Specifically, in a focus-lost event, the opposite component is the one gainin 阅读全文
posted @ 2018-09-06 08:35 borter 阅读(208) 评论(0) 推荐(0) 编辑
摘要: A temporary focus-lost event occurs if the focus moves to another window. It's temporary because the component will gain the focus when its window bec 阅读全文
posted @ 2018-09-06 08:35 borter 阅读(155) 评论(0) 推荐(0) 编辑
摘要: There is no straightforward way to set the initial focused component in a window. The typical method is to add a window listener to listen for the win 阅读全文
posted @ 2018-09-06 08:34 borter 阅读(185) 评论(0) 推荐(0) 编辑
摘要: JFrame frame = new JFrame(); JButton component1 = new JButton("1"); JButton component2 = new JButton("2"); JButton component3 = new JButton("3"); // By default, the focus travers... 阅读全文
posted @ 2018-09-06 08:34 borter 阅读(86) 评论(0) 推荐(0) 编辑
摘要: This example changes the focus traversal keys for the entire application. For an example of how to change the focus traversal keys for a particular co 阅读全文
posted @ 2018-09-06 08:33 borter 阅读(217) 评论(0) 推荐(0) 编辑
摘要: When the focus is on a component, any focus traversal keys set for that component override the default focus traversal keys. For an example of how to 阅读全文
posted @ 2018-09-06 08:33 borter 阅读(84) 评论(0) 推荐(0) 编辑
摘要: To listen to focus change events between components, install a listener with the keyboard focus manager. If you need the ability to veto (reject) a fo 阅读全文
posted @ 2018-09-06 08:32 borter 阅读(116) 评论(0) 推荐(0) 编辑
摘要: The methods to move the focus to the next or to the previous focusable component are Component.transferFocus() and Component.transferFocusBackward(). 阅读全文
posted @ 2018-09-06 08:32 borter 阅读(416) 评论(0) 推荐(0) 编辑
摘要: public Component findNextFocus() { // Find focus owner Component c = KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner(); Container root = c == null ? null : ... 阅读全文
posted @ 2018-09-06 08:31 borter 阅读(126) 评论(0) 推荐(0) 编辑
摘要: // null is returned if none of the components in this application has the focus Component compFocusOwner = KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner(); ... 阅读全文
posted @ 2018-09-06 08:31 borter 阅读(160) 评论(0) 推荐(0) 编辑
摘要: There are two ways to fill basic shapes like lines and rectangles. The first is to use specific drawing methods like Graphics.fillOval(). This example 阅读全文
posted @ 2018-09-06 08:30 borter 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Normally, a keystroke registered on a component is activated when the component has the focus. This type of activation condition is called WHEN_FOCUSE 阅读全文
posted @ 2018-09-06 08:30 borter 阅读(4646) 评论(0) 推荐(0) 编辑
摘要: There are two ways to draw basic shapes like circles, ovals, lines, arcs, squares, rectangles, rounded rectangles, and polygons. The first is to use s 阅读全文
posted @ 2018-09-06 08:29 borter 阅读(226) 评论(0) 推荐(0) 编辑
摘要: See also e575 The Quintessential Drawing Program and e594 Reading an Image or Icon from a File. 阅读全文
posted @ 2018-09-06 08:29 borter 阅读(98) 评论(0) 推荐(0) 编辑
摘要: See also e575 The Quintessential Drawing Program. 阅读全文
posted @ 2018-09-06 08:29 borter 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Registering a key event dispatcher with the keyboard focus manager allows you to see all key events before they are sent to the focused component. It 阅读全文
posted @ 2018-09-06 08:28 borter 阅读(210) 评论(0) 推荐(0) 编辑
摘要: A.结尾部分 B.开头部分 C.执行部分 D.声明部分 解答:C 阅读全文
posted @ 2018-09-05 16:25 borter 阅读(989) 评论(0) 推荐(0) 编辑
摘要: Oracle数据库中,在SQL语句中连接字符串的方法是哪个?(选择1项) A、cat B、concat C、join D、+ 解答:B 阅读全文
posted @ 2018-09-05 16:24 borter 阅读(3272) 评论(0) 推荐(0) 编辑
摘要: Oracle数据库表空间与数据文件的关系描述正确的是( ) A.一个表空间只能对应一个数据文件 B.一个表空间可以对应多个数据文件 C.一个数据文件可以对应多个表空间 D.表空间与数据文件没任何对应关系 解答:B 表空间和数据文件发生关系,数据文件是物理的,一个表空间可以包含多个数据文件, 而一个数 阅读全文
posted @ 2018-09-05 16:23 borter 阅读(4679) 评论(0) 推荐(0) 编辑
摘要: 你判断下面语句,有什么作用?(单选) GRANT update ON inventory TO joe WITH GRANT OPTION; A、一个系统权限被授予用户JOE B、一个对象权限被授予用户JOE C、用户JOE被授予在这个对象上的所有权限 D、一个系统权限和一个对象权限被授予用户JOE 阅读全文
posted @ 2018-09-05 16:23 borter 阅读(473) 评论(0) 推荐(0) 编辑
摘要: Oracle数据库表空间与用户的关系是 ( )? A.一对一 B.一对多 C.多对一 D.多对多 解答: D 一个用户可以使用一个或多个表空间,一个表空间也可以供多个用户使用。 阅读全文
posted @ 2018-09-05 16:22 borter 阅读(2346) 评论(0) 推荐(0) 编辑
摘要: 质量管理是SQA(软件质量保证)人员的职责 阅读全文
posted @ 2018-09-05 16:21 borter 阅读(810) 评论(0) 推荐(0) 编辑
摘要: (多选) A. 版本管理 B. 变更管理 C. 需求管理 D. 测试管理 解答:AB 阅读全文
posted @ 2018-09-05 16:21 borter 阅读(835) 评论(0) 推荐(0) 编辑
摘要: (单选) A. 需求分析 B. 计划 C. 计划跟踪 D. 质量管理 解答:D 阅读全文
posted @ 2018-09-05 16:20 borter 阅读(1221) 评论(0) 推荐(0) 编辑
摘要: (单选)软件需求分析阶段的输出主要是 A. 需求说明书 B. 开发计划 C. 可行性报告 D. 设计说明书 解答:A 阅读全文
posted @ 2018-09-05 16:18 borter 阅读(1131) 评论(1) 推荐(0) 编辑
摘要: 模块内聚度越高,说明模块内各成分彼此结合的程度越 A 松散 B 紧密 C 无法判断 D 相同 解答:B 内聚度是指模块内部各成分之间的联结强度.内聚度越高,越容易理解、修改和维护.但内聚度本身是主观的、非形式化的概念,程序设计人员很难客观地评估一个模块的内聚度.为此,人们开发出许多度量准则用于量化模 阅读全文
posted @ 2018-09-05 16:17 borter 阅读(4944) 评论(0) 推荐(0) 编辑
摘要: Servlet程序的入口点是?( ) A.init() B、main() C、service() D、doGet() 解答:C 阅读全文
posted @ 2018-09-05 16:15 borter 阅读(16841) 评论(1) 推荐(0) 编辑
摘要: 不能在不同用户之间共享数据的方法是?( ) A、通过cookie B、利用文件系统 C、利用数据库 D、通过ServletContext对象 解答:A 阅读全文
posted @ 2018-09-05 16:15 borter 阅读(7865) 评论(0) 推荐(0) 编辑
摘要: 下面属于javascript对象的有:( ) A. Window B. Document C. Form D. String E. Navigator 解答:ACE 阅读全文
posted @ 2018-09-05 16:14 borter 阅读(1980) 评论(0) 推荐(0) 编辑
摘要: 在DHTML中把整个文档的各个元素作为对象处理的技术是:() A.HTML B.CSS C.DOM D.Script(脚本语言) 解答:C DOM:文档对象模型 阅读全文
posted @ 2018-09-05 16:12 borter 阅读(6551) 评论(0) 推荐(0) 编辑
摘要: A. 表格中可以包含TBODY元素 B. 表格中可以包含CAPTION元素 C. 表格中可以包含多个TBODY元素 D. 表格中可以包含COLGROUP元素 E. 表格中可以包含COL元素 解答:ACDE caption标签用于定义一个表格标题。<caption>标签只能出现在table标签中,且必 阅读全文
posted @ 2018-09-05 16:11 borter 阅读(3449) 评论(0) 推荐(0) 编辑
摘要: A. 通过IFrame,网页可以嵌入其他网页内容,并可以动态更改 B. 在相同域名下,内嵌的IFrame可以获取外层网页的对象 C. 在相同域名下,外层网页脚本可以获取IFrame网页内的对象 D. 可以通过脚本调整IFrame的大小 解答:CD IFRAME 元素也就是文档中的文档,或者好像浮动的 阅读全文
posted @ 2018-09-05 16:10 borter 阅读(1286) 评论(0) 推荐(0) 编辑
摘要: A. <TEXTAREA></TEXTAREA> B. <INPUT type=”text”/> C. <INPUT type=”hidden”/> D. <DIV></DIV> 解答:AB 阅读全文
posted @ 2018-09-05 16:08 borter 阅读(5567) 评论(0) 推荐(0) 编辑
摘要: A.XML标记必须关闭 B.XML是大小写敏感的 C.XML文件只能跟DTD文件一块使用 D.XML和XSL结合可以在浏览器上显示 解答:C 阅读全文
posted @ 2018-09-05 16:07 borter 阅读(2936) 评论(0) 推荐(0) 编辑
摘要: A.CSS B.DTD C.SAX D.XSL 解答:C java解析xml文件四种方式:SAX DOM JDOM DOM4J 阅读全文
posted @ 2018-09-05 16:07 borter 阅读(2494) 评论(0) 推荐(0) 编辑
摘要: A. UDDI B. SOAP C. AJAX D.DCOM 解答:D DCOM(分布式组件对象模型,分布式组件对象模式)是一系列微软的概念和程序接口,利用这个接口,客户端程序对象能够请求来自网络中另一台计算机上的服务器程序对象。DCOM基于组件对象模型(COM),COM提供了一套允许同一台计算机上 阅读全文
posted @ 2018-09-05 16:06 borter 阅读(844) 评论(0) 推荐(0) 编辑
摘要: A 12.5 B 1.25 C 以上都成功 D 以上都失败 解答:B \d+ 表示可以出现1次或是n次数字 \. .? 表示可以“.”可以出现一次,也可以不出现 \d* 表示可以出现0次或是n次数字 阅读全文
posted @ 2018-09-05 16:05 borter 阅读(8615) 评论(2) 推荐(1) 编辑
摘要: 在jsp中,page指令的()属性用来引入需要的包或类。 A、extends B、import C、language D、contentType 解答:B 阅读全文
posted @ 2018-09-05 16:00 borter 阅读(10818) 评论(0) 推荐(0) 编辑
摘要: page指令属性简要介绍: language=”java” 声明脚本语言的种类,暂时只能用”java” extends=”package.class” 标明JSP编译时需要加入的Java Class的全名,但是得慎重的使用它,它会限制JSP的编译能力. import=”{package.class 阅读全文
posted @ 2018-09-05 15:59 borter 阅读(435) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 50 下一页