- 浏览: 747803 次
- 性别:
- 来自: 北京
最新评论
-
梦行Monxin商城系统:
java网上商城与php网上商城比较 -
梦行Monxin商城系统:
java网上商城与php网上商城比较 -
任楚娴:
你好,请问html = nvl(html); 这句中的nvl( ...
java html串转换成文本串 -
u013246812:
,谢拉!
jQuery ui Dialog 讲解参数 -
大宝剑99:
...
前端优化
文章列表
今天心情不错,自己写了一个表达式计算器,
相对于google自带的 计算器,增加了 “()”优先级
利用数字栈,与 操作符栈来实现
效果还不错
今天在css上写:
event:expression(
onmouseover = function(){}
,onmouseover = function(){}
)
时,发现竟然在火狐下不兼容,没有反映,于是从网上找了一下,别人写的 差异
ie和火狐兼容问题(转载) 1. document.form.item 问题
(1)现有问题:
现有代码中存在许多 document.formName.item("itemName") 这样的语句,不能在Firefox(火狐)下运行
(2)解决方法:
改用 document.formName.elements[ ...
这两写了一个超级简单的记事本,不需要打开,只是编辑一个文件
联系对文件读,写。
利用业余时间,简单学习了一下android ,应用软件开发
学习了 activity 以及 view,sqlite 等
自己看了看别人的例子,利用自己的想法学习了一下
编写出一个简单的 通讯录程序:实现对一个表的增删改查操作。
自己使用这个插件 感觉还不错
能够实现 锁屏,解屏功能。(显示出进度条)
/*
uuid.js - Version 0.3
JavaScript Class to create a UUID like identifier
Copyright (C) 2006-2008, Erik Giberti (AF-Design), All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Sof ...
自己对zTree 组件进行了小小改动,适应自己的需要。
感觉 树形组件比 treeview好用。呵呵,其实也都差不多
pane=document.createElement("div");
pane.setAttribute("id","diaDiv");
document.body.appendChild(pane);
var dia=new dijit.Dialog({title:"dojo dialog"},pane);
dia.show();
new dijit.form.Button({ "class": "large", label: ...
1. 常用的 dojo.query 用法
dojo.query("#header > h1") //ID 为 header 的元素的直接子节点中的 h3 元素
dojo.query("span[title^='test']") // 属性 title 以字符串 test 开头的 span 元素
dojo.query("div[id$='widget']") // 属性 id 以字符串 widget 结尾的 div 元素
dojo.query("input[name*='value']") // ...
上传一些 android 学习资料,
对于入门有一些帮助
In addition, any array of the open MBean data types may be used in open MBeans. A special class, javax.management.openmbean.ArrayType is used to represent the definition of single or multi-dimensional arrays in open MBeans.
The following list specifies all data types that are allowed as scalars or a ...
Android SDK 2.2 开发环境详解
系统环境的要求可以参考http://androidappdocs.appspot.com/sdk/requirements.html
一,下载所软件包
(1)JDK
要求JDK1.5+,建议JDK6.X
下载网址http://java.sun.com/javase/downloads/index.jsp
下载后,一步一步安 ...
package com.mjp.core.util;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.Adler32;
import java.util.zip.CheckedOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
public c ...
修改字节码 jclasslib
- 博客分类:
- java知识
jclasslib 修改常量,修改import等比较容易。
但是修改方法,我自己没有找到有好用的api,可能是自己没有找到
使用javaasist 或者 asm 都可以修改方法。
相对比较简单。
jclasslib 简单的例子
public static void main(String[] args) throws Exception {
String root = System.getProperty("user.dir");
File sourceFile = new File(root,"WelcomeBean.class");
...