c# 工具类(字符串和时间,文件)
- using System;
- using System.IO;
- using System.Text.RegularExpressions;
- using System.Windows.Browser;
- namespace SL_COMMON
- {
- public class Utils
- {
- #region String字符串类
- /**/
- /// <summary>
- /// 过滤字符
- /// </summary>
- public static string Replace(string strOriginal, string oldchar, string newchar)
- {
- if (string.IsNullOrEmpty(strOriginal))
- return "";
- string tempChar = strOriginal;
- tempChar = tempChar.Replace(oldchar, newchar);
- return tempChar;
- }
- /**/
- /// <summary>
- /// 过滤非法字符
- /// </summary>
- /// <param name="str"></param>
- /// <returns></returns>
- public static string ReplaceBadChar(string str)
- {
- if (string.IsNullOrEmpty(str))
- return "";
- string strBadChar, tempChar;
- string[] arrBadChar;
- strBadChar = "@@,+,',--,%,^,&,?,(,),<,>,[,],{,},/,\\,;,:,\",\"\",";
- arrBadChar = SplitString(strBadChar, ",");
- tempChar = str;
- for (int i = 0; i < arrBadChar.Length; i++)
- {
- if (arrBadChar[i].Length > 0)
- tempChar = tempChar.Replace(arrBadChar[i], "");
- }
- return tempChar;
- }
- /**/
- /// <summary>
- /// 检查是否含有非法字符
- /// </summary>
- /// <param name="str">要检查的字符串</param>
- /// <returns></returns>
- public static bool ChkBadChar(string str)
- {
- bool result = false;
- if (string.IsNullOrEmpty(str))
- return result;
- string strBadChar, tempChar;
- string[] arrBadChar;
- strBadChar = "@@,+,',--,%,^,&,?,(,),<,>,[,],{,},/,\\,;,:,\",\"\"";
- arrBadChar = SplitString(strBadChar, ",");
- tempChar = str;
- for (int i = 0; i < arrBadChar.Length; i++)
- {
- if (tempChar.IndexOf(arrBadChar[i]) >= 0)
- result = true;
- }
- return result;
- }
- /**/
- /// <summary>
- /// 分割字符串
- /// </summary>
- public static string[] SplitString(string strContent, string strSplit)
- {
- if (string.IsNullOrEmpty(strContent))
- {
- return null;
- }
- int i = strContent.IndexOf(strSplit);
- if (strContent.IndexOf(strSplit) < 0)
- {
- string[] tmp = { strContent };
- return tmp;
- }
- //return Regex.Split(strContent, @strSplit.Replace(".", @"\."), RegexOptions.IgnoreCase);
- return Regex.Split(strContent, @strSplit.Replace(".", @"\."));
- }
- /**/
- /// <summary>
- /// string型转换为int型
- /// </summary>
- /// <param name="strValue">要转换的字符串</param>
- /// <returns>转换后的int类型结果.如果要转换的字符串是非数字,则返回-1.</returns>
- public static int StrToInt(object strValue)
- {
- int defValue = -1;
- if ((strValue == null) || (strValue.ToString() == string.Empty) || (strValue.ToString().Length > 10))
- {
- return defValue;
- }
- string val = strValue.ToString();
- string firstletter = val[0].ToString();
- if (val.Length == 10 && IsNumber(firstletter) && int.Parse(firstletter) > 1)
- {
- return defValue;
- }
- else if (val.Length == 10 && !IsNumber(firstletter))
- {
- return defValue;
- }
- int intValue = defValue;
- if (strValue != null)
- {
- bool IsInt = new Regex(@"^([-]|[0-9])[0-9]*$").IsMatch(strValue.ToString());
- if (IsInt)
- {
- intValue = Convert.ToInt32(strValue);
- }
- }
- return intValue;
- }
- /**/
- /// <summary>
- /// string型转换为int型
- /// </summary>
- /// <param name="strValue">要转换的字符串</param>
- /// <param name="defValue">缺省值</param>
- /// <returns>转换后的int类型结果</returns>
- public static int StrToInt(object strValue, int defValue)
- {
- if ((strValue == null) || (strValue.ToString() == string.Empty) || (strValue.ToString().Length > 10))
- {
- return defValue;
- }
- string val = strValue.ToString();
- string firstletter = val[0].ToString();
- if (val.Length == 10 && IsNumber(firstletter) && int.Parse(firstletter) > 1)
- {
- return defValue;
- }
- else if (val.Length == 10 && !IsNumber(firstletter))
- {
- return defValue;
- }
- int intValue = defValue;
- if (strValue != null)
- {
- bool IsInt = new Regex(@"^([-]|[0-9])[0-9]*$").IsMatch(strValue.ToString());
- if (IsInt)
- {
- intValue = Convert.ToInt32(strValue);
- }
- }
- return intValue;
- }
- /**/
- /// <summary>
- /// string型转换为时间型
- /// </summary>
- /// <param name="strValue">要转换的字符串</param>
- /// <param name="defValue">缺省值</param>
- /// <returns>转换后的时间类型结果</returns>
- public static DateTime StrToDateTime(object strValue, DateTime defValue)
- {
- if ((strValue == null) || (strValue.ToString().Length > 20))
- {
- return defValue;
- }
- DateTime intValue;
- if (!DateTime.TryParse(strValue.ToString(), out intValue))
- {
- intValue = defValue;
- }
- return intValue;
- }
- /**/
- /// <summary>
- /// 判断给定的字符串(strNumber)是否是数值型
- /// </summary>
- /// <param name="strNumber">要确认的字符串</param>
- /// <returns>是则返加true 不是则返回 false</returns>
- public static bool IsNumber(string strNumber)
- {
- return new Regex(@"^([0-9])[0-9]*(\.\w*)?$").IsMatch(strNumber);
- }
- /**/
- /// <summary>
- /// 检测是否符合email格式
- /// </summary>
- /// <param name="strEmail">要判断的email字符串</param>
- /// <returns>判断结果</returns>
- public static bool IsValidEmail(string strEmail)
- {
- return Regex.IsMatch(strEmail, @"^([\w-\.]+)@((
[0−9]1,3\.[0−9]1,3\.[0−9]1,3\.)|(([\w−]+\.)+))([a−zA−Z]2,4|[0−9]1,3)(
?)$");
- }
- /**/
- /// <summary>
- /// 检测是否符合url格式,前面必需含有http://
- /// </summary>
- /// <param name="url"></param>
- /// <returns></returns>
- public static bool IsURL(string url)
- {
- return Regex.IsMatch(url, @"^http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?$");
- }
- /**/
- /// <summary>
- /// 检测是否符合电话格式
- /// </summary>
- /// <param name="phoneNumber"></param>
- /// <returns></returns>
- public static bool IsPhoneNumber(string phoneNumber)
- {
- |\d{3}-)?\d{7,8}$");
- }
- /**/
- /// <summary>
- /// 检测是否符合身份证号码格式
- /// </summary>
- /// <param name="num"></param>
- /// <returns></returns>
- public static bool IsIdentityNumber(string num)
- {
- return Regex.IsMatch(num, @"^\d{17}[\d|X]|\d{15}$");
- }
- #endregion
- #region Sql类
- /**/
- /// <summary>
- /// 检测是否有Sql危险字符
- /// </summary>
- /// <param name="str">要判断字符串</param>
- /// <returns>判断结果</returns>
- public static bool IsSafeSqlString(string str)
- {
- return !Regex.IsMatch(str, @"[-|;|,|\/|||
|
|\}|\{|%|@|\*|!|\']");
- }
- /**/
- /// <summary>
- /// 替换sql语句中的单引号
- /// </summary>
- public static string ReplaceBadSQL(string str)
- {
- string str2;
- if (str == null)
- {
- str2 = "";
- }
- else
- {
- str = str.Replace("'", "''");
- str2 = str;
- }
- return str2;
- }
- #endregion
- #region Html类
- /**/
- /// <summary>
- /// 返回 HTML 字符串的解码结果
- /// </summary>
- /// <param name="str">字符串</param>
- /// <returns>解码结果</returns>
- public static string HtmlDecode(string str)
- {
- //str = str.Replace("''", "'");
- return HttpUtility.HtmlDecode(str);
- }
- /**/
- /// <summary>
- /// 替换html字符
- /// </summary>
- public static string EncodeHtml(string strHtml)
- {
- if (strHtml != "")
- {
- strHtml = strHtml.Replace(",", "&def");
- strHtml = strHtml.Replace("'", "&dot");
- strHtml = strHtml.Replace(";", "&dec");
- return strHtml;
- }
- return "";
- }
- /**/
- /// <summary>
- /// 替换回车换行符为html换行符
- /// </summary>
- public static string StrFormat(string str)
- {
- string str2;
- if (str == null)
- {
- str2 = "";
- }
- else
- {
- str = str.Replace("\r\n", "<br />");
- str = str.Replace("\n", "<br />");
- str2 = str;
- }
- return str2;
- }
- #endregion
- #region DateTime类
- /**/
- /// <summary>
- /// 返回当前服务器时间的 yyyy-MM-dd 日期格式string
- /// </summary>
- public static string GetDate()
- {
- return DateTime.Now.ToString("yyyy-MM-dd");
- }
- /**/
- /// <summary>
- ///返回当前服务器时间的标准时间格式string HH:mm:ss
- /// </summary>
- public static string GetTime()
- {
- return DateTime.Now.ToString("HH:mm:ss");
- }
- /**/
- /// <summary>
- /// 返回当前服务器时间的标准时间格式string yyyy-MM-dd HH:mm:ss
- /// </summary>
- public static string GetDateTime()
- {
- return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
- }
- /**/
- /// <summary>
- /// 返回当前服务器时间的标准时间格式string yyyy-MM-dd HH:mm:ss:fffffff
- /// </summary>
- public static string GetDateTimeF()
- {
- return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fffffff");
- }
- /**/
- /// <summary>
- /// 将string类型的fDateTime转换为formatStr格式的日期类型
- /// </summary>
- public static string GetStandardDateTime(string fDateTime, string formatStr)
- {
- DateTime s = Convert.ToDateTime(fDateTime);
- return s.ToString(formatStr);
- }
- /**/
- /// <summary>
- ///将string类型的fDateTime转换为日期类型 yyyy-MM-dd HH:mm:ss
- /// </sumary>
- public static string GetStandardDateTime(string fDateTime)
- {
- return GetStandardDateTime(fDateTime, "yyyy-MM-dd HH:mm:ss");
- }
- /**/
- /// <summary>
- /// 返回相差的秒数
- /// </summary>
- /// <param name="Time"></param>
- /// <param name="Sec"></param>
- /// <returns></returns>
- public static int StrDateDiffSeconds(string Time, int Sec)
- {
- TimeSpan ts = DateTime.Now - DateTime.Parse(Time).AddSeconds(Sec);
- if (ts.TotalSeconds > int.MaxValue)
- {
- return int.MaxValue;
- }
- else if (ts.TotalSeconds < int.MinValue)
- {
- return int.MinValue;
- }
- return (int)ts.TotalSeconds;
- }
- /**/
- /// <summary>
- /// 返回相差的分钟数
- /// </summary>
- /// <param name="time"></param>
- /// <param name="minutes"></param>
- /// <returns></returns>
- public static int StrDateDiffMinutes(string time, int minutes)
- {
- if (time == "" || time == null)
- return 1;
- TimeSpan ts = DateTime.Now - DateTime.Parse(time).AddMinutes(minutes);
- if (ts.TotalMinutes > int.MaxValue)
- {
- return int.MaxValue;
- }
- else if (ts.TotalMinutes < int.MinValue)
- {
- return int.MinValue;
- }
- return (int)ts.TotalMinutes;
- }
- /**/
- /// <summary>
- /// 返回相差的小时数
- /// </summary>
- /// <param name="time"></param>
- /// <param name="hours"></param>
- /// <returns></returns>
- public static int StrDateDiffHours(string time, int hours)
- {
- if (time == "" || time == null)
- return 1;
- TimeSpan ts = DateTime.Now - DateTime.Parse(time).AddHours(hours);
- if (ts.TotalHours > int.MaxValue)
- {
- return int.MaxValue;
- }
- else if (ts.TotalHours < int.MinValue)
- {
- return int.MinValue;
- }
- return (int)ts.TotalHours;
- }
- #endregion
- #region file类
- /**/
- /// <summary>
- /// 文件是否存在
- /// </summary>
- /// <param name="filePath">相对路径</param>
- /// <returns></returns>
- public static bool FileExists(string filePath)
- {
- if (string.IsNullOrEmpty(filePath))
- return false;
- filePath = HttpContext.Current.Server.MapPath(filePath);
- DirectoryInfo dirInfo = new DirectoryInfo(filePath);
- if (dirInfo.Exists)
- return true;
- return false;
- }
- #endregion
- }
- }
c# 工具类(字符串和时间,文件)的更多相关文章
- Java日期工具类,Java时间工具类,Java时间格式化
Java日期工具类,Java时间工具类,Java时间格式化 >>>>>>>>>>>>>>>>>&g ...
- ZIP解压缩文件的工具类【支持多级文件夹|全】
ZIP解压缩文件的工具类[支持多级文件夹|全] 作者:Vashon 网上有非常多的加压缩演示样例代码.可是都仅仅是支持一级文件夹的操作.假设存在多级文件夹的话就不行了. 本解压缩工具类经过多次检查及重 ...
- 【Hutool】Hutool工具类之日期时间工具——DateUtil
一.用于取代Date对象的DateTime对象 再也不用Date SimpleDateFormat Calendar之间倒腾来倒腾去了!日期创建-获取-操作一步到位! 如果JDK版本更新到了8及以上, ...
- 【Hutool】工具类之日期时间工具-DateUtil
日期时间工具类 一.依赖 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-al ...
- [工具类] 读取解析json文件
读取json文件并转换为字符串 /** * 通过本地文件访问json并读取 * * @param path:json文件路径 * @return:json文件的内容 */ public static ...
- (工具类)MD5算法|时间格式转换|字符串转数字
package vote.utils; import java.security.MessageDigest; import java.text.SimpleDateFormat; import ja ...
- 工具类。父类(Pom文件)
ego_parent(pom文件) <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="ht ...
- PHP 图片上传工具类(支持多文件上传)
====================ImageUploadTool======================== <?php class ImageUploadTool { private ...
- 利用commons-io.jar包中FileUtils和IOUtils工具类操作流及文件
1.String IOUtils.toString(InputStream input),传入输入流对象,返回字符串,有多重重载,可按需要传参 用例: @Test public void showIn ...
- java调用svnkit工具类上传本地文件到svn服务器
package org.jenkinsci.plugins.svn.upload.step; import java.io.*; import org.tmatesoft.svn.core.SVNCo ...
随机推荐
- bzoj3142 luogu3228 HNOI2013 数列
这题好没意思啊,怀疑拉不开区分度. 题意:求一个递增序列,每两个相邻数字之间的差值不超过m,最后一个值不能大于n. 分析:网上好多人用了差分,我没想到.然后YY了一发生成函数. 考虑构造生成函数G(x ...
- Java CAS机制详解
CAS目的: 在多线程中为了保持数据的准确性,避免多个线程同时操作某个变量,很多情况下利用关键字synchronized实现同步锁,使用synchronized关键字修可以使操作的线程排队等待运行,可 ...
- python 一篇就能理解函数基础
一,函数是什么? 函数一词来源于数学,但编程中的「函数」概念,与数学中的函数是有很大不同的,具体区别,我们后面会讲,编程中的函数在英文中也有很多不同的叫法.在BASIC中叫做subroutine(子过 ...
- Mycat 常用管理命令说明
Mycat 提供了类似数据库的管理监控方式,可以通过 MySQL 命令行登陆管理端口 9066 执行相应的 SQL 语句进行管理,可以可以通过 JDBC 的方式进行远程连接管理,使用 MySQL 命令 ...
- mysql-5.7.12安装
CentOS 7的yum源中貌似没有正常安装mysql时的mysql-sever文件,需要去官网上下载 # wget http://dev.mysql.com/get/mysql-communit ...
- 后端Nodejs利用node-xlsx模块读取excel
后端Nodejs(利用node-xlsx模块) /** * Created by zh on 16-9-14. */ var xlsx = require("node-xlsx") ...
- 通过jersey-client客户端调用Jersey的Web服务模拟CURD
一.总体说明 通过jersey-client接口,创建客户端程序,来调用Jersey实现的RESTful服务,实现增.删.改.查等操作. 服务端主要是通过内存的方式,来模拟用户的增加.删除.修改.查询 ...
- 关于js中promise的面试题。
核心点promise在生命周期内有三种状态,分别是pending,fulfilled或rejected,状体改变只能是 pending-fulfilled,或者pending-rejected.而且状 ...
- nvm配置
多版本安装方式 卸载已有的Node.js 下载nvm 在C盘创建目录dev 在dev目中中创建两个子目录nvm和nodejs 并且把nvm包解压进去nvm目录中 在install.cmd文件上面右键选 ...
- html5 input type="color"边框伪类效果
html5为input提供了新的类型:color <input type="color" value="#999" id="color" ...