- 浏览: 159541 次
- 性别:
- 来自: 北京
最新评论
-
追求幸福:
每增加一个新的activity, 都要为这个activity指 ...
关于setContentView -
雨过天晴0521:
感谢第一位留言的网友, 我会坚持下去
ADB push的用法 -
小光棍:
謝謝。整理出來的東西真有用!!
ADB push的用法
文章列表
How to kill a remote login session in Windows server 2008?
C:\>reset session 2 /server:qapc07
refer to: http://www.petri.co.il/forums/showthread.php?t=48285
or forcely login with
C:\>mstsc /console /v:ip
How to compile a project having dynamic libarary;
============== c ===============
[qa@qa133 edu-gdb]$ mkdir HelloWorld
[qa@qa133 HelloWorld]$ vi HelloWorld.c
#include <stdio.h>
void sayHello(void){
printf("Hello, World!\n");
}
[qa@qa133 HelloWorld]$ vi HelloWolrd.h
voi ...
几篇介绍Cg编程的文章
- 博客分类:
- C++
http://http.developer.nvidia.com/CgTutorial/cg_tutorial_chapter01.html
http://blog.csdn.net/zxd523/article/details/8643765
在计算机图形学领域,用计算机处理图形信息我们最先接触的通常是使用openGL和Direct 3D这些图形编程API,这些通常称为固定管道(Graphics Pipeline)的编程,也就是程序员不直接操纵可编程的GPU,在常见的openGL的编程管道中,底层为我们设定了固定的渲染过程,程序员控制的只是这个过程中的各种参数。但是在有些情况下,尤其是硬件 ...
由一个js错误想到的.
- 博客分类:
- java
背景知识:Java 6提供对执行脚本语言的支持,这个支持来自于JSR223规范,对应的包是javax.script。默认情况下,Java 6只支持JavaScript脚本,它底层的实现是Mozilla Rhino,它是个纯Java的JavaScript实现。
详见: http://developer.51cto.com/art/201007/208812.htm
昨天运行ant脚本时触发了macros.js里这样一个js error: Uncaught TypeError: Cannot call method 'join' of undefined.
根据错误的line位置, 我查看了这 ...
Issue:
How do I set the maximum number of files allowed to be open on a system
Resolution:
The current setting for maximum number of open files can be viewed with the command:
ulimit -n
This number indicates the maximum number of files normal users (i.e. non-root) can have open in a single ...
ORA-01940 如何drop user
- 博客分类:
- 数据库
使用drop user bpmuser cascade时遇到以下问题
18:03:13 [DROP - 0 row(s), 0.000 secs] [Error Code: 1940, SQL State: 42000] ORA-01940: cannot drop a user that is currently connected
... 1 statement(s) executed, 0 row(s) affected, exec/fetch time: 0.000/0.000 sec [0 successful, 0 warnings, 1 errors]
正常情况下一定 ...
(转)javascript 如何实现键值对
- 博客分类:
- web开发
var variable = 67;
var map =
{
key 1 : 'string_val',
key 2 : variable,
'key 3': function(){alert('blah')},
'if the key is not a valid variable name, or is reserved, quote it': true
}
alert(map.key 1);
alert(map['key 2']);
map.key 3();
if( map['if the key is not a valid variable n ...
如何向apacheDS添加新的user
- 博客分类:
- 数据库
1.Right-click on the ou=users node and select New Entry. The New Entry wizard appears.
2.In the Entry Creation Method pane, you do not need to change any settings. Click Next.
3.In the Object Classes pane, select inetOrgPerson from the list of Available object classes on the left and then click Add ...
如何导入apache DS的数据
- 博客分类:
- 数据库
1. 安装好ApacheDS后, 启动ApacheDS server,可以用后台命令运行$nohup ./apacheds.sh &
注意, apacheds.sh <instance_name>可以启动一个自命名server instance, 否则是'default' instance. 不同instance上要各自创建各自的partition.
2. 下载并安装Apache Directory Studio, 注意JRE版本需6.0以上, 否则启动失败.
3. launch studio后 New connection, 输入hostname, port选择10 ...
(转)如何让让Linux下程序永远在后台执行
- 博客分类:
- 操作系统
Unix/Linux下一般想让某个程序在后台运行,很多都是使用 & 在程序结尾来让程序自动运行。比如我们要运行mysql在后台:
/usr/local/mysql/bin/mysqld_safe --user=mysql &
但是我们很多程序并不象mysqld一样可以做成守护进程,可能我们的程序只是普通程序而已,一般这种程序即使使用 & 结尾,如果终端关闭,那么程序也会被关闭。为了能够后台运行,我们需要使用nohup这个命令,比如我们有个start.sh需要在后台运行,并且希望在后台能够一直运行,那么就使用nohup:
n ...
case1.今天在运行amx-bpm deploy-bpm的脚本时遇到了这个错误
setup-target-instance:
[sql] Executing resource: /home/michael/amx-bpm20-conf/tibco/data/bpm/database/admin/setup-admin.sql
[sql] Failed to execute: CREATE TEMPORARY TABLESPACE bpm_tablespace_temp TEMPFILE 'bpm_tablespace_temp.dbf' size 100M AUTO ...
(转)Oracle用户、权限、角色管理介绍
- 博客分类:
- 数据库
转自:http://blog.csdn.net/junmail/article/details/4381287
Oracle 权限设置
一、权限分类
系统权限:系统规定用户使用数据库的权限。(系统权限是对用户而言)。
实体权限:某种权限用户对其它用户的表或视图的存取权限。(是针对表或 ...
How to setup amx bpm remotely
note: Configure the Maximum Number of Open Files first(The maximum number of open files/file descriptors that a user can open is controlled by the operating system. However, the default threshold on Linux systems is typically too low and has to be increased.
TIBCO reco ...
常用linux命令收集
- 博客分类:
- 操作系统
1.(转)如何修改linux主机名?
用hostname命令可以临时修改机器名,但机器重新启动之后就会恢复原来的值。
#hostname //查看机器名
#hostname -i //查看本机器名对应的ip地址
另外一种方法就是之久修改配置文件
修改/etc/sysconfig/network 修改这个文件,系统才有效
/etc/hosts hostname命令读这个配置文件
网上有很多朋友说直接修改/etc/hosts文件就可以,但系统本身用到主机名的地方不会变化,所以我觉得
/etc/hosts 是网络中用的,/etc/sysconfig/network是 ...
[转]转发和重定向的区别
- 博客分类:
- web开发
转发方式:request.getRequestDispatcher().forward();
重定向方式:response.sendRedirect();
下面是HttpServletResponse.sendRedirect方法实现的请求重定向与RequestDispatcher.forward方法实现的请求转发的总结比较:
1.RequestDispatcher.forward方法只能将请求转发给同一个WEB应用中的组件;而HttpServletResponse.sendRedirect 方法不仅可以重定向到当前应用程序中的其他资源,还可以重定向到同一个站点上的其他应用程序 ...