- 浏览: 71576 次
- 性别:
- 来自: 北京
文章列表
在注册表编辑器中依次打开:HKEY_CURRENT_USER——Software——Microsoft——Windows——CurrentVersion——Policies—— Explorer。
3
在注册表空白处右键,选择新建——二进制值,新建二进制值命名为“NoDrives”,其默认值为“00000000”。
windows 7 如何移动 hiberfil.sys 文件位置
widnows 7 默认开启休眠,这点很好。但是巨大的hiberfil.sys文件盘踞C盘中,也带来不少困扰。
如何把它移走?
windows7 嘎子 1年前 提问 嘎子 1年前 修改
0
编辑 回答
LIC1416N with return code -100 in DB2 9.7
请用管理员权限执行啊,, I tried through user with Admin rights it solved my problems
写道
@echo offf:java -jar baksmali.jar classes.dex
写道
@echo offf:cd f:java -jar smali.jar out
http://code.google.com/p/smali/downloads/list
- 2013-07-12 15:19
- 浏览 902
- 评论(0)
[WARNING] Missing POM for com.adobe.blazeds:blazeds-core:jar:4.0.0.14931[WARNING] Missing POM for com.adobe.blazeds:blazeds-common:jar:4.0.0.14931[WARNING] Missing POM for com.adobe.blazeds:blazeds-proxy:jar:4.0.0.14931
如果有上面这个。那么就用下面这个。You should download the desired release from adobe .unzip and ...
flex puremvc小笔记。
- 博客分类:
- flex
1.在application 里面注册 mainFacade:MainControl,mainFacade里注册一些命令(command)。
1.5 mainFacade.startUp(this); 用来做什么?
分两类一类是proxy,还有一个主mediator
this.facade.registerProxy(new LoginProxy());
this.facade.registerProxy(new RoleProxy());
this.facade.registerProxy(new LogoutProxy());
this.faca ...
sleep和wait的区别
考中2次了,再错第三次,我改姓!天天笔试面试连轴转,查错的心情都没有!不能再笨下去了!
from:http://nneverwei.javaeye.com/blog/494280
http://zhidao.baidu.com/question/75503928.html?fr=ala0
1、这两个方法来自不同 ...
linux shell trap的使用
(2012-03-31 15:02:23)
转载▼
标签:
杂谈
分类: 2010.3~
http://www.dustindiaz.com/add-and-remove-html-elements-dynamically-with-javascript/
http://java-zhangshuling.iteye.com/blog/1118827
通过href将动态模块的值传给静态模块。
哪位大哥能告诉我关于mysql的查询表结构的命令啊。在线等。
desc 表名。
ALTER TABLE table_name DROP INDEX index_name
http://www.zvon.org/xxl/XSLTreference/Output/function_substring.html
mysql -u root -p
drop database test ; create database test
String和enum的互相转换
- 博客分类:
- 转载
String和enum的互相转换
定义以下枚举public enum BookType{ Ticket, Trip,
Hotel}从String到enumBookType type =
(BookType)Enum.Parse(typeof(BookType),"Ticket");从enum到String方法一:ToString();方法二:s
= Enum.GetName(typeof(BookType), BookType.Ticket);
http://blog.csdn.net/dainiao01/article/deta ...
while (resultSet.next()) {
EventImpl tempEvent = new EventImpl();
tempEvent.setSubtype1(resultSet.getString(Constant.subtype1));
tempList.add(tempEvent);
}
的结果是列表中插入不同的元素。
而以下结果只能给出一个list,其中的所有元素都是相同的。
EventImpl tempEvent ;
while (resultSet.next()) {
t ...