用conn /as sysdba登录数据库。一:先新建用户create user test01 identified by test02(test01为用户名,test02为用户密码)二:赋予数据库操作的基本权限grant connect,resource,dba to test01;三:创建表空间...
分类:
数据库 时间:
2014-07-06 23:54:12
阅读次数:
354
这年头和LBS相关的应用越来越火。从foursquare的热闹程度就可见一般(什么,没听过 foursquare…. 哥们,你 out 了)。和 LBS有关的应用一般都包括一些共同的操作,最常见的一个,就是找附近的东东(餐馆, 商店, 妞…)。 所以, 这里就抛出了一个问题, 怎样才能知道两个物体离...
分类:
其他好文 时间:
2014-07-05 18:04:04
阅读次数:
224
C#中方法的参数有四种类型:1. 值参数类型 (不加任何修饰符,是默认的类型) 2. 引用型参数 (以ref 修饰符声明) 3. 输出型参数 (以out 修饰符声明) 4. 数组型参数 (以params 修饰符声明)
分类:
其他好文 时间:
2014-07-05 17:46:21
阅读次数:
194
/*****openssl 系统命令 x509输入文件类型 -in 是参数输入文件 -inform本地文件 -out是参数 是生成文件 ***/openssl x509 -in *.cer -inform der -out *.pem openssl pkcs12 -nocets -...
分类:
Web程序 时间:
2014-07-03 23:53:50
阅读次数:
439
完整错误信息:Description Resource Path Location TypeProject configuration is not up-to-date with pom.xml. Run Maven->Update Project or use Quick Fix. xunge-web line 1 Maven Configuration Problem解决办法:...
分类:
其他好文 时间:
2014-07-03 18:11:39
阅读次数:
213
错误信息:
When I ran Hardware Event-based Sampling Analysis 0, it showed the ERROR:
Collection failed
Collection failed. The data cannot be displayed.
PMU resource(s) currently being used by...
分类:
其他好文 时间:
2014-07-03 17:12:20
阅读次数:
338
完整错误信息:Description Resource Path Location TypeType mismatch: cannot convert from Enumeration to Enumeration ResponseHeaderFilter.java /dwz-java/src/dwz/common/util line 46 Java Problem解决办法:...
分类:
其他好文 时间:
2014-07-03 16:22:55
阅读次数:
435
静态方法里可以调用静态方法和静态变量,同时也能调用非静态方法和非静态变量。
public class Test {
public Test() {};
public Test(int i) {this.n = i;}
public static int m = 5;
public int n = 10;
public void fun1() {System.out.println("非...
分类:
其他好文 时间:
2014-07-03 16:19:05
阅读次数:
188
publicStringgetDeptOuId(StringopenId)throwsIOException{
StringdeptId="";
//存储信息的文件的绝对路径
StringcsvPath=FileUtil.getWorkingPath()
.resolve(ConfigUtil.getConfig().get("idmappings")).toString();
System.out.print(csvPath);
//此处可以用..
分类:
其他好文 时间:
2014-07-03 15:04:05
阅读次数:
191
Java中的类成员基本分为静态成员,实例变量方法中特别的是静态方法和构造方法。1、定义一个类publicclassClassLoaderTest{publicinta;publicStringb;privatestaticintc;publicClassLoaderTest(){System.out.println("执行前:"+a+""+b);a=10;b="lisi";System.out.println("构造..
分类:
编程语言 时间:
2014-07-03 14:35:53
阅读次数:
226