摘要:
git add . git remote add origin https://gitee.com/chz367/point_h5.git git config --global user.name "chz367" git config --global user.email"chz_367@16 阅读全文
摘要:
当然删除的入口还是Windows系统的“程序和功能”里面的“卸载或者更改程序",在什么位置你肯定是知道的。然后找到Microsoft SQL Server 2008 (64-bit),右键点击“卸载或者更新。”(注:虽然里面有很多以Microsoft SQL Server 2008开头的,但是选择这 阅读全文
摘要:
使用 yum yum update yum 方式安装mysql 一、检查系统是否安装老版本,有的话干掉 #yum list installed | grep mysqlmysql-libs.x86_64 5.1.73-5.el6_6 @anaconda-CentOS-201508042137.x86 阅读全文
摘要:
第一步 :进入到已存在的目录 cd (/file) 第二步: 初始化git init 第三步: 添加远程仓库地址 git remote add origin (address) 第四步: 添加本地代码 git add . 第五步: 提交本地代码 git commit -m "init" 第六步: 提 阅读全文
摘要:
注册表命令大全1. gpedit.msc-----组策略2. sndrec32-------录音机3. Nslookup-------IP地址侦测器4. explorer-------打开资源管理器5. logoff---------注销命令6. tsshutdn-------60秒倒计时关机命令7... 阅读全文
摘要:
CREATE proc newgetpage (--默认分页主键为id @tblName nvarchar(128), --表名称列表 @PageSize int=10, --页尺寸 @PageIndex int=1, --当前页 @fields nvarchar(4000)='*', --查询字段... 阅读全文
摘要:
/// /// 将字符串编码为Base64字符串 /// /// /// public static string Base64Encode(string str) { byte[] barray; barray = Encoding.Default.GetBytes(str); retur... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;namespace WindowsApplication1{ public static class ChineseToPinYin {/// /// 汉字拼音转换类 /... 阅读全文
摘要:
最近要做一个项目涉及到C#中压缩与解压缩的问题的解决方法,大家分享。这里主要解决文件夹包含文件夹的解压缩问题。1)下载SharpZipLib.dll,在http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx中有最新免费版本,“Assemblies for .NET 1.1, .NET 2.0, .NET CF 1.0, .NET CF 2.0: Download [297 KB] ”点击Download可以下载,解压后里边有好多文件夹,因为不同的版本,我用的FW2.0。2)引用SharpZipLib.dll,在项目中点击项 阅读全文
摘要:
/// /// Zip 压缩文件/// public class Zip{ public Zip() { } #region 加压方法 /// /// 功能:压缩文件(暂时只压缩文件夹下一级目录中的文件,文件夹及其子级被忽略) /// /// 被压缩的文件夹夹路径 /// 生成压缩文件的路径,为空则默认与被压缩文件夹同一级目录,名称为:文件夹名+.zip /// 出错信息 /// 是否压缩成功 public static bool ZipFile(string dirPath, string zipFilePath, out string err) { err = ""; 阅读全文