cmd窗口直接输入导库命令即可,不需要进入sqlplusC:\Documents and
Settings\Administrator> imp username/pass@orcl file=E:\**.dmp
full=y在导库之前请新建用户或者清空所有对象:包括表对象,函数,触发器,存储过程。
分类:
数据库 时间:
2014-05-08 18:59:16
阅读次数:
332
首先这个问题有两种可能: 1.就是没有配置环境变量,
这个只需要将android安装:例如C:\Program File\android-sdk-windows\tools加入到
系统变量Path中,需要注意的是Path中会配置的有其他的路径,需要在android的路径前加;然后将上面的路径粘贴上去...
分类:
数据库 时间:
2014-05-08 13:07:56
阅读次数:
397
总是忘记, 备份一下,方便下次用.第一种:File directory = new
File("");//参数为空String courseFile = directory.getCanonicalPath()
;System.out.println(courseFile);结果:C:\Docume...
分类:
编程语言 时间:
2014-05-08 12:43:50
阅读次数:
343
TFTP(Trivial File Transfer Protocol)是基于UDP协议开发,用来在客户机与服务器之间进行简单文件传输的协议,提供不复杂、开销不大的文件传输服务。
一、修改/etc/xinetd.d/tftp配置文件,如下:
$ cat /etc/xinetd.d/tftp
service tftp
{
protocol = udp
...
分类:
系统相关 时间:
2014-05-07 23:05:14
阅读次数:
452
[root@mailActivity]#find/opt/xyrpg/rpgserver_s1/XMLData/Activity/-typef-execmd5sum{}\;|sed‘s/rpgserver_s1/rpgserver_s2/‘|md5sum-c
/opt/xyrpg/rpgserver_s2/XMLData/Activity/ActivityCondition.xml:FAILED
/opt/xyrpg/rpgserver_s2/XMLData/Activity/NewServerActivit..
分类:
其他好文 时间:
2014-05-07 22:25:09
阅读次数:
522
ftp创建与密码破解ftp创建1.打开linux服务器,查看并修改物理地址和ip地址,2.然后开始配置linux,输入命令cd/media/unt/dev/cdrom/media/cdrom/3.cdcdromcdCentOS/(注意大小写)4.find/media/cdrom/CentOS/-name*vsftpd*5.rpm–ivh/media/cdrom/CentOS/vsftpd-2.0.5-10.e15...
分类:
其他好文 时间:
2014-05-07 21:54:51
阅读次数:
527
System.IO 命名空间
System.IO 命名空间的主要目的是为了提供方便访问操作系统的文件和目录类型,另外,也提供写内存和网络流的方法。
这个命名空间提供主要两种方法处理文件和目录,能够使用FileInfo 和 DirectoryInfo 对象获得或修改文件和目录的信息;也能够用File 和 Directory 类实现相同的功能,但是两者都要求传入的文件名为静态成员。通常,如果...
分类:
其他好文 时间:
2014-05-07 21:40:34
阅读次数:
322
Given n points on a 2D plane, find the maximum
number of points that lie on the same straight line. 解题想法:
其实判断一个直线上最好的方法是判断斜率。如果在同一直线上,那么直线上一点与其他点的斜率相...
分类:
其他好文 时间:
2014-05-07 21:13:02
阅读次数:
323
//文件远程下载 WebClient client = new WebClient(); Uri
uri = new Uri(url); client.DownloadFile(Uri uri,String
filename);//文件一定得存在不然会报错所以在删除文件时先判断这个文件是否存...
分类:
其他好文 时间:
2014-05-07 21:07:37
阅读次数:
284
使用findByPk()根据数据表主键查询的是对象,不需要使用foreach()循环出来但是使用findall()和find()查询的是对象类型的数组需要使用foreach()循环出来=======================================
public function...
分类:
其他好文 时间:
2014-05-07 20:32:35
阅读次数:
565