`
lxc914_java
  • 浏览: 57453 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
 oracle数据库建表语句: create table blobTest ( id number(19), filedata BLOB, primary key(id) );  实体类: public class Blobtest implements Serializable { private Long id; private byte[] filedata; public Long getId() { return id; } public void setId(Lon ...
例如将 2012-5-2 转换为 2012-05-02 select convert(varchar(10),cast('2012-5-2' as datetime),120);
1.抽象类: 不能手动创建对象(JVM可以创建抽象类的对象),但是可以声明抽象类型的引用。 public class TestAbstract1{ public static void main(String[] args){ //Animal a=new Animal(); //error Animal a=null; a=new Dog(); } } abstract class Animal{ } class Dog extends Animal{ } 2.抽象方法:有方法名的定义,没有实现,(只定义了能做什么,没定义怎么做) 抽象方法的好处是允许方法的定义和实现分开。 ...
Java抽象类和接口的区别(好长时间没看这种文章了) abstract class和interface是Java语言中对于抽象类定义进行支持的两种机制,正是由于这两种机制的存在,才赋予了Java强大的面向对象能力。abstract class和interface之间在对于抽象类 ...

解析 xml

public class XMLDemo { public void getAllUserNames(String fileName) { try { DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); File file = new File(fileName); if (file.exists()) { Document doc = db.parse(file); ...

java 屏幕截图

public static void captureScreen(String fileName) throws Exception {    Toolkit.getDefaultToolkit().getScreenSize();       Rectangle screenRectangle = new Rectangle(100, 100);       Robot robot = new Robot();       BufferedImage image = robot.createScreenCapture(screenRectangle);      ImageI ...
public class Thumbnail { public static void main(String[] args) throws ImageFormatException, InterruptedException, IOException { createThumbnail("D:\\1.png",200,200,100,"D:\\11.jpg"); } private static void createThumbnail(String filename, int thumbWidth, int thumbHe ...

js遍历table

var tableObj = document.getElementById("tableName");var str = "";for(var i=0;i<tableObj.rows.length;i++){   for(varj=0;j<tableObj.rows[i].cells.length;j++)   {      //str += tableObj.rows[i].cells[j].innerHTML+"   ";           for(var z=0;z<tableObj.rows[i].cell ...
一、amchart是什么 amchart是一组由flash做成的图表组件。这些flash没有数据,一但指定了配置文件和数据文件的地址,flash就可以显示出你所需要的图表。 在配置文件中可以设这个flash的颜色,大小,文字属性,柱子,曲线的粗细 ...
1.首先下载最新的Eclipse安装解压到 D:\eclipse. 2.载安装Flex Builder 3.0地址为:http://trials.adobe.com/Applications/Flex/FlexBuilder/3/FB3_WWEJ_Plugin.exe 3.指定Flex Builder 3.0 的安装目录,比如:D:\Flex Builder 3 Plug-in目录下,然后下一步安装过程中会提示选择eclipse目录.我们选择好eclipse目录进入下一步. 4.接着屏幕出现选择是否安装浏览器 Flash Plyer 9 插件(可选安装),接下来大家慢慢等待...出现一些提 ...
1. 瞬时对象(Transient Objects):使用new操作符初始化的对象不是立刻就持久的。它们的状态是瞬时的,也就是说它们没有任何跟数据库表相关联的行为,只要应用不再引用这些对象(不再被任何其它对象所引用),它们的状态将 ...
关闭页面:   1.window.close();                   //有js关闭页面保存提示     2. window.opener=null;           window.open("","_self");           window.close();                   //无提示   传值:  父页面:           function getValue(username,password)          {                                 ...
1. 需要在applicationContext.xml 启动注解注入的方式,添加配置选项,如下:   xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">  完整的applicationCont ...
l       问题 在一个表单中,我需要把同一行中的任意两个元素的值累加,并把累加的值赋值到第三个元素。   l       技术 jquery 中的parent([expr]) , parents([expr]), find([expr]),prev(),next() l       分析 看到这个问题,就会想到,首先要得要被赋值元素的位置,以它的坐标为起点,查找另外两个元素,因为这三个元素在同一行,所以我们可以用jquery中的parent()或

flex 鼠标忙碌

    博客分类:
  • Flex
在项目中,经常由于访问后台数据量过大,导致响应慢,而前台没有提示,让操作人员误认为请求结束的现象,可以用下列方法解决。见代码: import mx.managers.CursorManager; CursorManager.setBusyCursor(); //忙碌光标 CursorManager.removeBusyCursor(); //取消忙碌光标 CursorManager.removeAllCursors(); //恢复正常光标  仅仅改变鼠标的样式是不够的,我们需要使当前页面不可用(即:鼠标和键盘不能进行任何操作), ...
Global site tag (gtag.js) - Google Analytics