using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication1{ class Pr...
分类:
其他好文 时间:
2015-02-28 10:01:13
阅读次数:
128
今天看了几节教学视频,做一下记录。1.python中调用系统命令需要importos模块。例如os.system(‘ls‘),这条语句执行结果是,返回ls执行的结果,同时返回命令执行的描述符,若成功执行,则返回0.那么我们想获得执行结果就会如下操作a=os.system(‘ls‘),但是查看a的值就会发现,a=0..
分类:
编程语言 时间:
2015-02-28 00:25:55
阅读次数:
163
A、环境描述 服务器A(主) 192.168.0.105 服务器B(主) 192.168.0.108 Mysql版本: 5.6.21 System OS:CentOS release 6.5 主从需同步的数据库内容保持一致。 B、主主配置过程(1)创建同步用户在主服务器上为从服务器建立一个...
分类:
数据库 时间:
2015-02-27 22:53:01
阅读次数:
263
(备查)必要的FTP配置命令如下:system-view
ftp server enable #启用ftp服务
aaa #进入aaa模式
local-user ftp server-type ftp #设置用户名的服务类型为ftp
local-user ftp password cipher huawei #创建用户名ftp,密码huawei
local-user ftp privilege lev...
分类:
其他好文 时间:
2015-02-27 21:32:34
阅读次数:
184
1、 说出以下代码的运行结果,并分析:public static void Main(String[] args) { int a = 0; int b = 2; int c = 4; a += b += c += 6; System.Console.WriteLine("c="+c); Syst....
分类:
Web程序 时间:
2015-02-27 21:31:17
阅读次数:
202
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using System.Data.SqlClient;using System....
分类:
数据库 时间:
2015-02-27 20:15:19
阅读次数:
178
1、HDFS简介 HDFS(Hadoop Distributed File System)是Hadoop项目的核心...
分类:
其他好文 时间:
2015-02-27 20:08:22
阅读次数:
200
https://msdn.microsoft.com/zh-cn/library/System.ServiceProcess.ServiceBase%28v=vs.80%29.aspx为将作为服务应用程序的一部分而存在的服务提供基类。在创建新的服务类时,必须从 ServiceBase 派生。命名空间...
分类:
其他好文 时间:
2015-02-27 20:03:35
阅读次数:
159
publicstaticclassTest3{ publicstaticvoidmain(String[]args){ inti=4; System.out.println(~i);//-5(i的二进制为0100 System.out.println(~i&i);//0 System.out.println(~i|i);//-1 System.out.println(i>>2);//14/2的2次方 System.out.println(i<<2)..
分类:
编程语言 时间:
2015-02-27 18:49:06
阅读次数:
227
1,一维数组的遍历int[]a=newint[5];for(inti=0;i<a.length;i++){System.out.print(a[i]+"");}或for(intt:a){System.out.print(t+"");}2,二维数组的遍历int[][]a2=newint[3][4];for(inti=0;i<a2.length;i++){for(intj=0;j<a2[i].length;j++){a2[i][j]=i+j;System.out..
分类:
编程语言 时间:
2015-02-27 18:44:33
阅读次数:
154