文章列表
oracle 客户端设置
- 博客分类:
- 网络收藏
新增环境变量
ORACLE_HOME 指向D:\tools\oracle\product
TNS_ADMIN指向D:\tools\oracle\network
NLS_LANG设置值为SIMPLIFIED CHINESE_CHINA.ZHS16GBK
在线注册地址 http://174.140.163.89/keygen/idea.htm
PengJinfeng: 478441550-H9RO4-TT7P5-XXZ3R-F3L79-2IFC1
pengjinfeng: 1852351837-9GC7F-CGQEW-56NO7-SGRFY-KL9T5
PJF:890122523-9F6K9-4CRAF-2LRCQ-5SILI-FO420
1. UiActionSheet 列表形式的按钮菜单
var actionSheet = UIActionSheet()
actionSheet.title = "菜单列表"
actionSheet.delegate = self
actionSheet.addButtonWithTitle("菜单1")
actionSheet.addButtonWithTitle("菜单2")
actionSheet.add ...
1. LayoutInflater 对象获取的三种方式
LayoutInflaterinflater=LayoutInflater.from(this);
LayoutInflaterinflater=getLayoutInflater();
LayoutInflaterinflater=(LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
2. LayoutInflater 参数说明
public View inflate(int resource, ...
http://my.oschina.net/banxi/blog/56421
Firebug控制台详解
作者:阮一峰出处:http://www.ruanyifeng.com/blog/2011/03/firebug_console_tutorial.html
控制台(Console)是Firebug的第一个面板,也是最重要的面板,主要作用是显示网页加载过程中产生各类信息。
一、显示信息的命令
Firebug内置一个console对象,提供5种方法,用来显示信息。
最简单的方法是console.log(),可以用来取代alert()或document.write()。比如,在网页脚本中使用console.log("Hello World") ...