- 浏览: 18464 次
- 性别:
- 来自: 深圳
最新评论
-
east_java:
定位不准确啊~
frameLayout代替AbsoluteLayout通过坐标定位 -
east_java:
不错~
frameLayout代替AbsoluteLayout通过坐标定位 -
yangpanwww:
O(∩_∩)O哈哈~。。不错
js String 方法
文章列表
Intent settintIntent = new Intent(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);
startActivity(settintIntent);
- 2012-07-06 15:12
- 浏览 1897
- 评论(0)
貌似iteye人越来越少了,算了我还是在这里记录一下吧。
你是我的眼,带我阅读浩瀚的书海·········
..........
假如我定义一个需要定位的imageView
ImageView imageView = new ImageView(this);
在AbsoluteLayout中通过x,y定位很好定位,但是貌似被弃用了
AbsoluteLayout.LayoutParams aLayoutParams = new AbsoluteLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, ...
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/helios/SR2/eclipse-java-helios-SR2-win32.zip
这个下载的版本能安装adt,以后不知道会不会又变了,去年装的时候都不要这么麻烦https://dl-ssl.google.com/android/eclipse/
1.下面的语句用来查询哪些对象被锁:
select object_name,machine,s.sid,s.serial#
from v$locked_object l,dba_objects o ,v$session s
where l.object_id = o.object_id and l.session_id=s.sid;
2.下面的语句用来杀死一个进程:
alter system kill session '24,111'; (其中24,111分别是上面查询出的sid,serial#)
【注】以上两步,可以通过Oracle的管理控制台来执行。 用户 ...
kao!
public class HttpUtils {
/**
* post请求 ,超时默认10秒
* @param url
* @param params
* @return
* @throws IOException
*/
public String post(String url, Map<String, String> params) throws IOException {
return this.post(url, params, 10);
} ...
String.prototype.Trim = function() {
return this.replace(/(^\s*)|(\s*$)/g, "");
}
String.prototype.LTrim = function() {
return this.replace(/(^\s*)/g, "");
}
String.prototype.RTrim = function() {
return this.replace(/(\s*$)/g, "");
}
String.prototype.htmlEnco ...
当json里面放集合时,使用hibernate的话,如果有many-to-one.要注意过滤
如:String id=SystemUtil.checkNullString(req.getParameter("id"));
JsonConfig jsonConfig=new JsonConfig();
jsonConfig.setExcludes(new String[]{"wgUnioninfo"});
JSONObject.fromObject(service.getEditUnionManager().getUnionInfo(id),jso ...
public class Operate {
/**
* 使用条件 :inObj与outClass具有相同的属性
* @param inObj 包含有数据的对象
* @param outClass 需要返回对象的类型
* @return outClass类型的实例,该实例的属性值通过inObj赋值
*/
public Object getEntity(Object inObj, Class<Object> outClass) {
try {
//获取inObj的所有属性
Field[] myfield = inObj.get ...