06 2012 档案

摘要:linux系统安装完,以后通过命令模式配置网卡IP。配置文件通常是/etc/sysconfig/network-scripts/ifcfg-interface-name 1.配置网卡IP地址 vi /etc/sysconfig/network-scripts/ifcfg-eth0 #第二块网卡:vi 阅读全文
posted @ 2012-06-30 18:17 xyzla 阅读(29655) 评论(0) 推荐(3)
摘要:由于项目打包 需要判断客户端是否安装.netFramework 经常需要 重新注册.netFramework,纪录在此以便后期实践使用重新在IIS中注册.NetFrameworkC:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i打开程序-运行-cmd:输入一下命令重新注册IISC:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i以下是aspnet_regiis.exe参数的说明信息:-i - 安装 ASP.NET 的此版本,并更新 I 阅读全文
posted @ 2012-06-28 06:59 xyzla 阅读(1562) 评论(0) 推荐(2)
摘要:InnoSutup打包工具下载不带.netFrameworkView Code 1 ; 脚本用 Inno Setup 脚本向导 生成。 2 ; 查阅文档获取创建 INNO SETUP 脚本文件详细资料! 3 4 [Setup] 5 ; 注意: AppId 的值是唯一识别这个程序的标志。 6 ; 不要在其他程序中使用相同的 AppId 值。 7 ; (在编译器中点击菜单“工具 -> 产生 GUID”可以产生一个新的 GUID) 8 AppId={{E47F55B6-5604-4430-A9BE-AE7ADAB5D08C} 9 AppName=xxxxxxxxxxxxxxxx V1.1.8. 阅读全文
posted @ 2012-06-27 16:26 xyzla 阅读(3473) 评论(3) 推荐(6)
摘要:.net操作系统文件(ini与dat)的帮助类View Code 1 using System; 2 using System.Text; 3 using System.Runtime.InteropServices; 4 using System.Diagnostics; 5 6 using System.IO; 7 using System.Data; 8 9 /// <summary> 10 /// edit by: 201206.14.1535 11 /// </summary> 12 public class Ini 13 { 14 /// <summ. 阅读全文
posted @ 2012-06-27 10:32 xyzla 阅读(1171) 评论(2) 推荐(2)
摘要:SQLiteHelper 帮助类 [一]SQLiteHelper 帮助类 [二]SQLiteHelper 帮助类 [三]View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data.SQLite;// 6 using System.Data;// 7 using System.IO;// 8 using System.Data.Common;// 9 using System.Configu... 阅读全文
posted @ 2012-06-26 12:26 xyzla 阅读(873) 评论(0) 推荐(3)
摘要:SQLiteHelper 帮助类 [一]SQLiteHelper 帮助类 [二]SQLiteHelper 帮助类 [三]View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data.SQLite;// 6 using System.Data;// 7 using System.IO;// 8 using System.Data.Common;// 9 using System.Configu... 阅读全文
posted @ 2012-06-26 12:23 xyzla 阅读(921) 评论(0) 推荐(3)
摘要:SQLiteHelper 帮助类 [一]SQLiteHelper 帮助类 [二]SQLiteHelper 帮助类 [三]View Code 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Data; 6 using System.Data.Common; 7 using System.Data.SQLite; 8 9 namespace Tools.Data 10 { 11 /// <summar... 阅读全文
posted @ 2012-06-26 12:02 xyzla 阅读(2072) 评论(0) 推荐(4)
摘要:Microsoft.Win32.RegistryKey regKey = Microsoft.Win32.Registry.LocalMachine; Microsoft.Win32.RegistryKey regSubKey = regKey.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\winword.exe", false); string OfficePath = Path.GetDirectoryName(regSubKey.GetValue... 阅读全文
posted @ 2012-06-25 08:15 xyzla 阅读(775) 评论(0) 推荐(0)
摘要:持续收集有关 windows 注册表 的相关资料http://www.cnblogs.com/bugs/archive/2012/06/06/2537802.html 阅读全文
posted @ 2012-06-06 12:32 xyzla 阅读(370) 评论(0) 推荐(2)
摘要:持续收集有关 Hadoop的相关资料1.HBase系统架构——http://www.cnblogs.com/shitouer/archive/2012/06/04/2533518.html 阅读全文
posted @ 2012-06-04 08:17 xyzla 阅读(342) 评论(0) 推荐(2)