- 浏览: 7928 次
- 性别:
- 来自: 安徽
最新评论
-
Boyer:
happyprogram 写道该功能在系统中正好需要使用。如果 ...
JAVA使用正则表达式把文本中的URL内容转换为链接 -
happyprogram:
该功能在系统中正好需要使用。
JAVA使用正则表达式把文本中的URL内容转换为链接
文章列表
/**
* URL转换为链接
* @author Boyer
* @param urlText
* @return String
*/
public static String urlToLink(String urlText){
// 匹配的条件选项为结束为空格(半角和全角)、换行符、字符串的结尾或者遇到其他格式的文本
String regexp
= "(((http|ftp|https|file)://)|((?<!((http|ftp| ...
今天做程序用到了解压缩到方法,先记下在这里(从网上摸索到的) 首先添加引用 Shell32.dll,可以在Windows\system32中找到它。 代码如下:
static void UnZip(string zipFile, string destFolder) { Shell32.ShellClass sc = new Shell32.ShellClass(); Shell32.Folder SrcFolder = sc.NameSpace(zipFile); Shell32.Folder ...