1、创建用户并指定表空间create user gy_3004 identified by
gy_3004 default tablespace gy_3004_data temporary tablespace gy_3004_temp;
2、给用户授予权限--方式一: GRANT CREA...
分类:
数据库 时间:
2014-05-08 12:18:54
阅读次数:
412
Unity3d导入工程出现错误“Creating unique file:creating file
Temp/tempFile failed.Please ensure there is enough disk space and you have
permissions setup correc...
分类:
其他好文 时间:
2014-05-08 11:50:15
阅读次数:
803
2.导出多个sheet页的Excel在Office Excel 中设计好
导出的格式,然后另存为xml电子表格,然后用记事本打开保存的xml文件,复制内容放入程序Response.Write() 输出就可以了
注意:导出成功后打开文档,如果复制内容没有丝毫变化的话,不会出现问题,否则可能会出现文件损...
分类:
Web程序 时间:
2014-05-08 11:41:32
阅读次数:
372
import java.io.IOException;import
org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.Path;import
org.apache.hadoop.io.Text;import org.ap...
分类:
其他好文 时间:
2014-05-08 11:27:24
阅读次数:
309
public boolean checkMatchFNOrFI(String[] strArray,String value){
boolean flag = false;
for(String s : strArray){
if(!s.equals("")){
String temp = s.replaceAll("\\?", "\\\\w").replaceAll("\\...
分类:
数据库 时间:
2014-05-08 10:46:16
阅读次数:
380
1.配置ant打包所需的环境变量(事先配置好Java,Android的环境变量)---这个不会请自行百度.or
google2.解压ant,比如解压到D:\ant3.我的电脑->属性->高级->环境变量4.系统变量新建ANT_
HMOE,变量值为d:\ant5.系统变量新建或修改Path,将%ANT...
分类:
其他好文 时间:
2014-05-08 09:56:18
阅读次数:
466
解决方案1:导入第3方jar包问题,明明导入了jar但还是报java.lang.NoClassDefFoundError解决步骤:1、在Android项目根目录下新建一个lib文件夹;2、把你需要导入的第3方jar包复制到lib文件夹中;3、在lib文件夹上点右键,选Bulid
path –> Us...
分类:
移动开发 时间:
2014-05-08 09:42:10
阅读次数:
422
有两种写法可以获取到Documents的路径1.NSString *path =
[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
这种写法不是很严谨2.NSArray *filePath = NSSearchPath....
分类:
移动开发 时间:
2014-05-08 09:28:59
阅读次数:
342
这小例子只要是说明用python怎么批量修改指定目录的文件名:
记得要把脚本跟修改的文件放在同一个目录下
#encoding:utf-8
import os
import sys
files = os.listdir('D:\\1') #路径可以自己
for name in files:
a = os.path.splitext(name)
if a[1] == '.txt': ...
分类:
编程语言 时间:
2014-05-08 08:16:14
阅读次数:
537
1 #include "windows.h" 2 #include "iostream" 3
#include "stdio.h" 4 5 void StartClone(int nCloneID){ 6 TCHAR
szFilename[MAX_PATH]; 7 GetModu...
分类:
其他好文 时间:
2014-05-08 08:00:45
阅读次数:
441